Show / Hide Table of Contents

Class WaterfallChartSpec

A waterfall chart.

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

Properties

ConnectorLineStyle

The line style for the connector lines.

Declaration
public virtual LineStyle ConnectorLineStyle { get; set; }
Property Value
Type Description
LineStyle

Domain

The domain data (horizontal axis) for the waterfall chart.

Declaration
public virtual WaterfallChartDomain Domain { get; set; }
Property Value
Type Description
WaterfallChartDomain

ETag

The ETag of the item.

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

FirstValueIsTotal

True to interpret the first value as a total.

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

HideConnectorLines

True to hide connector lines between columns.

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

Series

The data this waterfall chart is visualizing.

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

StackedType

The stacked type.

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

Implements

IDirectResponseSchema
Back to top