//! Error bar plots use std::borrow::Cow; use std::iter::IntoIterator; use crate::data::Matrix; use crate::traits::{self, Data, Set}; use crate::{ Color, Display, ErrorBarDefault, Figure, Label, LineType, LineWidth, Plot, PointSize, PointType, Script, }; /// Properties common to error bar plots pub struct Properties { color: Option, label: Option>, line_type: LineType, linewidth: Option, point_size: Option, point_type: Option, style: Style, } impl ErrorBarDefault