pub trait ChartExt {
fn new_points(&mut self, filters: &mut Filters, init: bool) -> Res<Points>;
fn reset(&mut self, filters: &Filters);
}
Expand description
Trait implemented by all charts.
Required Methods
Generates the new points of the chart.