Struct google_sheets4::api::WaterfallChartSeries[][src]

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

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

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.

data: Option<ChartData>

The data being visualized in this series.

data_label: Option<DataLabel>

Information about the data labels for this series.

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.

negative_columns_style: Option<WaterfallChartColumnStyle>

Styles for all columns in this series with negative values.

positive_columns_style: Option<WaterfallChartColumnStyle>

Styles for all columns in this series with positive values.

subtotal_columns_style: Option<WaterfallChartColumnStyle>

Styles for all subtotal columns in this series.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Returns the “default value” for a type. Read more

Deserialize this value from the given Serde deserializer. Read more

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Performs the conversion.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.