Show / Hide Table of Contents

Class WaterfallChartCustomSubtotal

A custom subtotal column for a waterfall chart series.

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

Properties

DataIsSubtotal

True if the data point at subtotal_index is the subtotal. If false, the subtotal will be computed and appear after the data point.

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

ETag

The ETag of the item.

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

Label

A label for the subtotal column.

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

SubtotalIndex

The 0-based index of a data point within the series. If data_is_subtotal is true, the data point at this index is the subtotal. Otherwise, the subtotal appears after the data point with this index. A series can have multiple subtotals at arbitrary indices, but subtotals do not affect the indices of the data points. For example, if a series has three data points, their indices will always be 0, 1, and 2, regardless of how many subtotals exist on the series or what data points they are associated with.

Declaration
public virtual Nullable<int> SubtotalIndex { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

Implements

IDirectResponseSchema
Back to top