Trait textplots::Plot[][src]

pub trait Plot<'a> {
    fn lineplot(&'a mut self, shape: &'a Shape<'_>) -> &'a mut Chart<'_>;
}

Provides an interface for drawing plots.

Required methods

fn lineplot(&'a mut self, shape: &'a Shape<'_>) -> &'a mut Chart<'_>[src]

Draws a line chart of points connected by straight line segments.

Loading content...

Implementors

impl<'a> Plot<'a> for Chart<'a>[src]

Loading content...