pub type ChartSeries = ChartChannel;Expand description
Backward-compatible type alias. New code should use ChartChannel directly.
Aliased Type§
pub struct ChartSeries {
pub name: String,
pub label: String,
pub values: Vec<f64>,
pub color: Option<Color>,
}Fields§
§name: StringRole name — set by builder method, never by user (e.g. “x”, “y”, “open”)
label: StringDisplay label
values: Vec<f64>Extracted numeric data
color: Option<Color>