Struct google_sheets4::api::WaterfallChartSpec[][src]

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

A waterfall chart.

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

Fields

connector_line_style: Option<LineStyle>

The line style for the connector lines.

domain: Option<WaterfallChartDomain>

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

first_value_is_total: Option<bool>

True to interpret the first value as a total.

hide_connector_lines: Option<bool>

True to hide connector lines between columns.

series: Option<Vec<WaterfallChartSeries>>

The data this waterfall chart is visualizing.

stacked_type: Option<String>

The stacked type.

total_data_label: Option<DataLabel>

Controls whether to display additional data labels on stacked charts which sum the total value of all stacked values at each value along the domain axis. stacked_type must be STACKED and neither CUSTOM nor placement can be set on the total_data_label.

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

impl RefUnwindSafe for WaterfallChartSpec[src]

impl Send for WaterfallChartSpec[src]

impl Sync for WaterfallChartSpec[src]

impl Unpin for WaterfallChartSpec[src]

impl UnwindSafe for WaterfallChartSpec[src]

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> Instrument 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.