[][src]Struct google_sheets4::WaterfallChartSeries

pub struct WaterfallChartSeries {
    pub negative_columns_style: Option<WaterfallChartColumnStyle>,
    pub hide_trailing_subtotal: Option<bool>,
    pub positive_columns_style: Option<WaterfallChartColumnStyle>,
    pub data: Option<ChartData>,
    pub custom_subtotals: Option<Vec<WaterfallChartCustomSubtotal>>,
    pub subtotal_columns_style: Option<WaterfallChartColumnStyle>,
}

A single series of data for a waterfall chart.

This type is not used in any activity, and only used as part of another schema.

Fields

negative_columns_style: Option<WaterfallChartColumnStyle>

Styles for all columns in this series with negative values.

hide_trailing_subtotal: Option<bool>

True to hide the subtotal column from the end of the series. By default, a subtotal column will appear at the end of each series. Setting this field to true will hide that subtotal column for this series.

positive_columns_style: Option<WaterfallChartColumnStyle>

Styles for all columns in this series with positive values.

data: Option<ChartData>

The data being visualized in this series.

custom_subtotals: Option<Vec<WaterfallChartCustomSubtotal>>

Custom subtotal columns appearing in this series. The order in which subtotals are defined is not significant. Only one subtotal may be defined for each data point.

subtotal_columns_style: Option<WaterfallChartColumnStyle>

Styles for all subtotal columns in this series.

Trait Implementations

impl Part for WaterfallChartSeries[src]

impl Default for WaterfallChartSeries[src]

impl Clone for WaterfallChartSeries[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for WaterfallChartSeries[src]

impl Serialize for WaterfallChartSeries[src]

impl<'de> Deserialize<'de> for WaterfallChartSeries[src]

Auto Trait Implementations

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.

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

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

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

impl<T> Typeable for T where
    T: Any

fn get_type(&self) -> TypeId

Get the TypeId of this object.

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]