Show / Hide Table of Contents

Class EmbeddedChart

A chart embedded in a sheet.

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

Properties

Border

The border of the chart.

Declaration
[JsonProperty("border")]
public virtual EmbeddedObjectBorder Border { get; set; }
Property Value
Type Description
EmbeddedObjectBorder

ChartId

The ID of the chart.

Declaration
[JsonProperty("chartId")]
public virtual int? ChartId { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

ETag

The ETag of the item.

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

Position

The position of the chart.

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

Spec

The specification of the chart.

Declaration
[JsonProperty("spec")]
public virtual ChartSpec Spec { get; set; }
Property Value
Type Description
ChartSpec

Implements

IDirectResponseSchema
In This Article
Back to top