Trait textplots::ColorPlot[][src]

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

Provides an interface for drawing colored plots.

Required methods

Draws a line chart of points connected by straight line segments using the specified color

Implementors