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
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 ChartAxisViewWindowOptions : 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
[JsonProperty("viewWindowMax")]
public virtual 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
[JsonProperty("viewWindowMin")]
public virtual double? ViewWindowMin { get; set; }
Property Value
Type Description
System.Nullable<System.Double>

ViewWindowMode

The view window's mode.

Declaration
[JsonProperty("viewWindowMode")]
public virtual string ViewWindowMode { get; set; }
Property Value
Type Description
System.String

Implements

IDirectResponseSchema
In This Article
Back to top