Show / Hide Table of Contents

Class WaterfallChartSeries

A single series of data for a waterfall chart.

Inheritance
System.Object
WaterfallChartSeries
Implements
IDirectResponseSchema
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.Sheets.v4.Data
Assembly: Google.Apis.Sheets.v4.dll
Syntax
public class WaterfallChartSeries : 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
[JsonProperty("customSubtotals")]
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
[JsonProperty("data")]
public virtual ChartData Data { get; set; }
Property Value
Type Description
ChartData

DataLabel

Information about the data labels for this series.

Declaration
[JsonProperty("dataLabel")]
public virtual DataLabel DataLabel { get; set; }
Property Value
Type Description
DataLabel

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
[JsonProperty("hideTrailingSubtotal")]
public virtual bool? HideTrailingSubtotal { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

NegativeColumnsStyle

Styles for all columns in this series with negative values.

Declaration
[JsonProperty("negativeColumnsStyle")]
public virtual WaterfallChartColumnStyle NegativeColumnsStyle { get; set; }
Property Value
Type Description
WaterfallChartColumnStyle

PositiveColumnsStyle

Styles for all columns in this series with positive values.

Declaration
[JsonProperty("positiveColumnsStyle")]
public virtual WaterfallChartColumnStyle PositiveColumnsStyle { get; set; }
Property Value
Type Description
WaterfallChartColumnStyle

SubtotalColumnsStyle

Styles for all subtotal columns in this series.

Declaration
[JsonProperty("subtotalColumnsStyle")]
public virtual WaterfallChartColumnStyle SubtotalColumnsStyle { get; set; }
Property Value
Type Description
WaterfallChartColumnStyle

Implements

IDirectResponseSchema
In This Article
Back to top