Trait rstk::chart::plotchart::TkChartSeries[][src]

pub trait TkChartSeries: TkPlotchart {
    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

Sets colour for displaying data series

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

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

Sets colour to use when drawing filled area.

Sets width of line for displaying data series

Sets symbol type and radius for displaying data series

Implementors