Style Customization
struct Cartesian2 {
marker_opts: Option<MarkerOpts>,
}
let mut plot = ezel::Cartesian2::new();
plot.style.marker = MarkerOpts::default();
plot.style.marker.size = Some(10.0);Theme
Last updated
struct Cartesian2 {
marker_opts: Option<MarkerOpts>,
}
let mut plot = ezel::Cartesian2::new();
plot.style.marker = MarkerOpts::default();
plot.style.marker.size = Some(10.0);Last updated
let mut theme: Theme = ezel::theme::MATPLOTLIB.clone();
theme.marker.size = Some(12.0); // customize the matplotlib theme