pub trait StylableChart<C: PixelColor> {
type Style;
// Required methods
fn apply_style(&mut self, style: Self::Style);
fn style(&self) -> &Self::Style;
}Expand description
Trait for customizable chart styling
pub trait StylableChart<C: PixelColor> {
type Style;
// Required methods
fn apply_style(&mut self, style: Self::Style);
fn style(&self) -> &Self::Style;
}Trait for customizable chart styling