pub trait TkChartSeries: TkPlotchart {
    // Provided methods
    fn series_colour(&self, series: &str, colour: &str) { ... }
    fn series_drawing_mode(&self, series: &str, mode: DrawingMode) { ... }
    fn series_fill_area(&self, series: &str, area: FillArea) { ... }
    fn series_fill_colour(&self, series: &str, colour: &str) { ... }
    fn series_line_width(&self, series: &str, width: u64) { ... }
    fn series_symbol(&self, series: &str, symbol: Symbol, radius: u64) { ... }
}
Expand description

Methods for configuring the way that data series are displayed on some kinds of charts.

Provided Methods§

source

fn series_colour(&self, series: &str, colour: &str)

Sets colour for displaying data series

source

fn series_drawing_mode(&self, series: &str, mode: DrawingMode)

Sets drawing mode for displaying data series (called “type” in tklib’s plotchart documentation).

source

fn series_fill_area(&self, series: &str, area: FillArea)

Used to select whether to fill the area above or below the line of data series.

source

fn series_fill_colour(&self, series: &str, colour: &str)

Sets colour to use when drawing filled area.

source

fn series_line_width(&self, series: &str, width: u64)

Sets width of line for displaying data series

source

fn series_symbol(&self, series: &str, symbol: Symbol, radius: u64)

Sets symbol type and radius for displaying data series

Implementors§