pub struct SparklineGroupConfig {
pub sparklines: Vec<SparklineConfig>,
pub sparkline_type: SparklineType,
pub markers: bool,
pub high_point: bool,
pub low_point: bool,
pub line_weight: Option<f64>,
}Expand description
A sparkline group configuration for adding to worksheets.
Fields§
§sparklines: Vec<SparklineConfig>Sparklines in this group (all share the same settings).
sparkline_type: SparklineTypeSparkline type for the group.
markers: boolShow data markers.
high_point: boolHighlight high point.
low_point: boolHighlight low point.
line_weight: Option<f64>Line weight in points.
Trait Implementations§
Source§impl Clone for SparklineGroupConfig
impl Clone for SparklineGroupConfig
Source§fn clone(&self) -> SparklineGroupConfig
fn clone(&self) -> SparklineGroupConfig
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for SparklineGroupConfig
impl RefUnwindSafe for SparklineGroupConfig
impl Send for SparklineGroupConfig
impl Sync for SparklineGroupConfig
impl Unpin for SparklineGroupConfig
impl UnwindSafe for SparklineGroupConfig
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more