View Source GoogleApi.Sheets.V4.Model.WaterfallChartSeries (google_api_sheets v0.34.0)
A single series of data for a waterfall chart.
Attributes
-
customSubtotals
(type:list(GoogleApi.Sheets.V4.Model.WaterfallChartCustomSubtotal.t)
, default:nil
) - 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
(type:GoogleApi.Sheets.V4.Model.ChartData.t
, default:nil
) - The data being visualized in this series. -
dataLabel
(type:GoogleApi.Sheets.V4.Model.DataLabel.t
, default:nil
) - Information about the data labels for this series. -
hideTrailingSubtotal
(type:boolean()
, default:nil
) - 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. -
negativeColumnsStyle
(type:GoogleApi.Sheets.V4.Model.WaterfallChartColumnStyle.t
, default:nil
) - Styles for all columns in this series with negative values. -
positiveColumnsStyle
(type:GoogleApi.Sheets.V4.Model.WaterfallChartColumnStyle.t
, default:nil
) - Styles for all columns in this series with positive values. -
subtotalColumnsStyle
(type:GoogleApi.Sheets.V4.Model.WaterfallChartColumnStyle.t
, default:nil
) - Styles for all subtotal columns in this series.
Summary
Functions
Unwrap a decoded JSON object into its complex fields.
Types
@type t() :: %GoogleApi.Sheets.V4.Model.WaterfallChartSeries{ customSubtotals: [GoogleApi.Sheets.V4.Model.WaterfallChartCustomSubtotal.t()] | nil, data: GoogleApi.Sheets.V4.Model.ChartData.t() | nil, dataLabel: GoogleApi.Sheets.V4.Model.DataLabel.t() | nil, hideTrailingSubtotal: boolean() | nil, negativeColumnsStyle: GoogleApi.Sheets.V4.Model.WaterfallChartColumnStyle.t() | nil, positiveColumnsStyle: GoogleApi.Sheets.V4.Model.WaterfallChartColumnStyle.t() | nil, subtotalColumnsStyle: GoogleApi.Sheets.V4.Model.WaterfallChartColumnStyle.t() | nil }