[][src]Struct umya_spreadsheet::structs::data_series::DataSeries

pub struct DataSeries { /* fields omitted */ }

Implementations

impl DataSeries[src]

pub const TYPE_BARCHART: &'static str[src]

pub const TYPE_BARCHART_3D: &'static str[src]

pub const TYPE_LINECHART: &'static str[src]

pub const TYPE_LINECHART_3D: &'static str[src]

pub const TYPE_AREACHART: &'static str[src]

pub const TYPE_AREACHART_3D: &'static str[src]

pub const TYPE_PIECHART: &'static str[src]

pub const TYPE_PIECHART_3D: &'static str[src]

pub const TYPE_DOUGHNUTCHART: &'static str[src]

pub const TYPE_DONUTCHART: &'static str[src]

pub const TYPE_SCATTERCHART: &'static str[src]

pub const TYPE_SURFACECHART: &'static str[src]

pub const TYPE_SURFACECHART_3D: &'static str[src]

pub const TYPE_RADARCHART: &'static str[src]

pub const TYPE_BUBBLECHART: &'static str[src]

pub const TYPE_STOCKCHART: &'static str[src]

pub const TYPE_CANDLECHART: &'static str[src]

pub const GROUPING_CLUSTERED: &'static str[src]

pub const GROUPING_STACKED: &'static str[src]

pub const GROUPING_PERCENT_STACKED: &'static str[src]

pub const GROUPING_STANDARD: &'static str[src]

pub const DIRECTION_BAR: &'static str[src]

pub const DIRECTION_HORIZONTAL: &'static str[src]

pub const DIRECTION_COL: &'static str[src]

pub const DIRECTION_COLUMN: &'static str[src]

pub const DIRECTION_VERTICAL: &'static str[src]

pub const STYLE_LINEMARKER: &'static str[src]

pub const STYLE_SMOOTHMARKER: &'static str[src]

pub const STYLE_MARKER: &'static str[src]

pub const STYLE_FILLED: &'static str[src]

pub const EMPTY_AS_GAP: &'static str[src]

pub const EMPTY_AS_ZERO: &'static str[src]

pub const EMPTY_AS_SPAN: &'static str[src]

pub fn get_plot_type(&self) -> &str[src]

pub fn get_plot_grouping(&self) -> &Option<String>[src]

pub fn get_plot_direction(&self) -> &str[src]

pub fn get_plot_style(&self) -> &str[src]

pub fn get_plot_order(&self) -> &BTreeMap<i32, i32>[src]

pub fn get_plot_label(&self) -> &BTreeMap<i32, DataSeriesValues>[src]

pub fn get_plot_category(&self) -> &BTreeMap<i32, DataSeriesValues>[src]

pub fn get_smooth_line(&self) -> &bool[src]

pub fn get_plot_values(&self) -> &BTreeMap<i32, DataSeriesValues>[src]

Trait Implementations

impl Debug for DataSeries[src]

impl Default for DataSeries[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.