Class WaterfallChartCustomSubtotal
A custom subtotal column for a waterfall chart series.
Implements
Inherited Members
Namespace: Google.Apis.Sheets.v4.Data
Assembly: Google.Apis.Sheets.v4.dll
Syntax
public class WaterfallChartCustomSubtotal : 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
[JsonProperty("dataIsSubtotal")]
public virtual bool? DataIsSubtotal { get; set; }
Property Value
Type | Description |
---|---|
bool? |
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
string |
Label
A label for the subtotal column.
Declaration
[JsonProperty("label")]
public virtual string Label { get; set; }
Property Value
Type | Description |
---|---|
string |
SubtotalIndex
The zero-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
[JsonProperty("subtotalIndex")]
public virtual int? SubtotalIndex { get; set; }
Property Value
Type | Description |
---|---|
int? |