pub struct SparklineGroup {
pub sparkline_type: Option<String>,
pub markers: Option<bool>,
pub high: Option<bool>,
pub low: Option<bool>,
pub first: Option<bool>,
pub last: Option<bool>,
pub negative: Option<bool>,
pub display_x_axis: Option<bool>,
pub line_weight: Option<f64>,
pub min_axis_type: Option<String>,
pub max_axis_type: Option<String>,
pub sparklines: SparklineList,
}Expand description
A group of sparklines with shared settings.
Fields§
§sparkline_type: Option<String>Sparkline type: “line”, “column”, or “stacked” (win/loss).
markers: Option<bool>Whether to display markers on data points.
high: Option<bool>Whether to highlight the high point.
low: Option<bool>Whether to highlight the low point.
first: Option<bool>Whether to highlight the first point.
last: Option<bool>Whether to highlight the last point.
negative: Option<bool>Whether to highlight negative points.
display_x_axis: Option<bool>Whether to display an axis.
line_weight: Option<f64>Line weight in points.
min_axis_type: Option<String>Minimum axis type: “individual” or “group”.
max_axis_type: Option<String>Maximum axis type: “individual” or “group”.
sparklines: SparklineListIndividual sparklines in this group.
Trait Implementations§
Source§impl Clone for SparklineGroup
impl Clone for SparklineGroup
Source§fn clone(&self) -> SparklineGroup
fn clone(&self) -> SparklineGroup
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 moreSource§impl Debug for SparklineGroup
impl Debug for SparklineGroup
Source§impl<'de> Deserialize<'de> for SparklineGroup
impl<'de> Deserialize<'de> for SparklineGroup
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for SparklineGroup
impl PartialEq for SparklineGroup
Source§impl Serialize for SparklineGroup
impl Serialize for SparklineGroup
impl StructuralPartialEq for SparklineGroup
Auto Trait Implementations§
impl Freeze for SparklineGroup
impl RefUnwindSafe for SparklineGroup
impl Send for SparklineGroup
impl Sync for SparklineGroup
impl Unpin for SparklineGroup
impl UnwindSafe for SparklineGroup
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