plotlars-core 0.12.1

Core types and traits for plotlars
Documentation
1
2
3
4
5
6
7
8
9
10
use crate::components::Line as LineStyle;
use crate::components::Rgb;

#[derive(Clone)]
#[doc(hidden)]
pub struct LineIR {
    pub width: Option<f64>,
    pub style: Option<LineStyle>,
    pub color: Option<Rgb>,
}