orbital-charts 0.1.1

Chart components for Orbital and Leptos
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Sparkline chart types.

/// Line or bar rendering for a sparkline.
#[derive(Clone, Copy, Debug, Default, PartialEq, Eq)]
pub enum SparklinePlotType {
    /// Connected line stroke (default).
    #[default]
    Line,
    /// Vertical bar marks.
    Bar,
}