Trait textplots::Plot

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

Provides an interface for drawing plots.

Required Methods

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

Implementors