Trait BuildChart

Source
pub trait BuildChart<X, Y> {
    // Required method
    fn build_chart(&self, area: &DrawingArea<SVGBackend<'_>, Shift>);
}

Required Methods§

Implementors§

Source§

impl<T, N, X, Y> BuildChart<X, Y> for PlotWithText<T, N>
where for<'a> MyAxis<'a, X>: Ranged<ValueType = X> + ValueFormatter<X>, for<'a> AxisNumber<'a, Y>: Ranged<ValueType = Y> + ValueFormatter<Y>, X: Clone + 'static, Y: Clone + 'static, Self: GetAxis<X, Y>,