Trait Aplot

Source
pub trait Aplot<X, Y> {
    // Required method
    fn aplot(&self, col: usize) -> SVGWrapper;
}

Required Methods§

Source

fn aplot(&self, col: usize) -> SVGWrapper

Implementations on Foreign Types§

Source§

impl Aplot<NaiveDate, f32> for [PnlRes<da>]

Source§

fn aplot(&self, col: usize) -> SVGWrapper

Source§

impl<T, X> Aplot<X, f32> for Vec<InfoPnlRes<T, X>>
where T: Display, for<'a> PlotWithText<&'a [X], Vec<f32>>: BuildChart<X, f32> + GetAxis<X, f32>, X: Clone + PartialOrd + 'static, for<'a> MyAxis<'a, X>: Ranged<ValueType = X> + ValueFormatter<X>,

Source§

fn aplot(&self, col: usize) -> SVGWrapper

Source§

impl<T, X, Y> Aplot<X, Y> for [T]
where [T]: BuildCharts<X, Y>,

Source§

fn aplot(&self, cols: usize) -> SVGWrapper

Implementors§