[][src]Struct google_sheets4::WaterfallChartSpec

pub struct WaterfallChartSpec {
    pub hide_connector_lines: Option<bool>,
    pub stacked_type: Option<String>,
    pub domain: Option<WaterfallChartDomain>,
    pub connector_line_style: Option<LineStyle>,
    pub series: Option<Vec<WaterfallChartSeries>>,
    pub first_value_is_total: Option<bool>,
}

A waterfall chart.

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

Fields

hide_connector_lines: Option<bool>

True to hide connector lines between columns.

stacked_type: Option<String>

The stacked type.

domain: Option<WaterfallChartDomain>

The domain data (horizontal axis) for the waterfall chart.

connector_line_style: Option<LineStyle>

The line style for the connector lines.

series: Option<Vec<WaterfallChartSeries>>

The data this waterfall chart is visualizing.

first_value_is_total: Option<bool>

True to interpret the first value as a total.

Trait Implementations

impl Clone for WaterfallChartSpec[src]

impl Debug for WaterfallChartSpec[src]

impl Default for WaterfallChartSpec[src]

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

impl Part for WaterfallChartSpec[src]

impl Serialize for WaterfallChartSpec[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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

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

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

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

type Owned = T

The resulting type after obtaining ownership.

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> Typeable for T where
    T: Any