Show / Hide Table of Contents

Class BasicChartAxis

An axis of the chart. A chart may not have more than one axis per axis position.

Inheritance
System.Object
BasicChartAxis
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 BasicChartAxis : IDirectResponseSchema

Properties

ETag

The ETag of the item.

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

Format

The format of the title. Only valid if the axis is not associated with the domain. The link field is not supported.

Declaration
[JsonProperty("format")]
public virtual TextFormat Format { get; set; }
Property Value
Type Description
TextFormat

Position

The position of this axis.

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

Title

The title of this axis. If set, this overrides any title inferred from headers of the data.

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

TitleTextPosition

The axis title text position.

Declaration
[JsonProperty("titleTextPosition")]
public virtual TextPosition TitleTextPosition { get; set; }
Property Value
Type Description
TextPosition

ViewWindowOptions

The view window options for this axis.

Declaration
[JsonProperty("viewWindowOptions")]
public virtual ChartAxisViewWindowOptions ViewWindowOptions { get; set; }
Property Value
Type Description
ChartAxisViewWindowOptions

Implements

IDirectResponseSchema
In This Article
Back to top