Show / Hide Table of Contents

Class ChartAxisViewWindowOptions

The options that define a "view window" for a chart (such as the visible values in an axis).

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

Properties

ETag

The ETag of the item.

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

ViewWindowMax

The maximum numeric value to be shown in this view window. If unset, will automatically determine a maximum value that looks good for the data.

Declaration
public virtual Nullable<double> ViewWindowMax { get; set; }
Property Value
Type Description
System.Nullable<System.Double>

ViewWindowMin

The minimum numeric value to be shown in this view window. If unset, will automatically determine a minimum value that looks good for the data.

Declaration
public virtual Nullable<double> ViewWindowMin { get; set; }
Property Value
Type Description
System.Nullable<System.Double>

ViewWindowMode

The view window's mode.

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

Implements

IDirectResponseSchema
Back to top