Show / Hide Table of Contents

Class WaterfallChartSeries

A single series of data for a waterfall chart.

Inheritance
System.Object
WaterfallChartSeries
Implements
IDirectResponseSchema
Namespace: Google.Apis.Sheets.v4.Data
Assembly: Google.Apis.Sheets.v4.dll
Syntax
public class WaterfallChartSeries : object, IDirectResponseSchema

Properties

CustomSubtotals

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.

Declaration
public virtual IList<WaterfallChartCustomSubtotal> CustomSubtotals { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<WaterfallChartCustomSubtotal>

Data

The data being visualized in this series.

Declaration
public virtual ChartData Data { get; set; }
Property Value
Type Description
ChartData

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
System.String

HideTrailingSubtotal

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.

Declaration
public virtual Nullable<bool> HideTrailingSubtotal { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

NegativeColumnsStyle

Styles for all columns in this series with negative values.

Declaration
public virtual WaterfallChartColumnStyle NegativeColumnsStyle { get; set; }
Property Value
Type Description
WaterfallChartColumnStyle

PositiveColumnsStyle

Styles for all columns in this series with positive values.

Declaration
public virtual WaterfallChartColumnStyle PositiveColumnsStyle { get; set; }
Property Value
Type Description
WaterfallChartColumnStyle

SubtotalColumnsStyle

Styles for all subtotal columns in this series.

Declaration
public virtual WaterfallChartColumnStyle SubtotalColumnsStyle { get; set; }
Property Value
Type Description
WaterfallChartColumnStyle

Implements

IDirectResponseSchema
Back to top