Trait textplots::Plot[][src]

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

Provides an interface for drawing plots.

Required methods

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

Implementors