Show / Hide Table of Contents

Class SheetsChart

A PageElement kind representing a linked chart embedded from Google Sheets.

Inheritance
System.Object
SheetsChart
Implements
Google.Apis.Requests.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.Slides.v1.Data
Assembly: Google.Apis.Slides.v1.dll
Syntax
public class SheetsChart : IDirectResponseSchema

Properties

ChartId

The ID of the specific chart in the Google Sheets spreadsheet that is embedded.

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

ContentUrl

The URL of an image of the embedded chart, with a default lifetime of 30 minutes. This URL is tagged with the account of the requester. Anyone with the URL effectively accesses the image as the original requester. Access to the image may be lost if the presentation's sharing settings change.

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

ETag

The ETag of the item.

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

SheetsChartProperties

The properties of the Sheets chart.

Declaration
[JsonProperty("sheetsChartProperties")]
public virtual SheetsChartProperties SheetsChartProperties { get; set; }
Property Value
Type Description
SheetsChartProperties

SpreadsheetId

The ID of the Google Sheets spreadsheet that contains the source chart.

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

Implements

Google.Apis.Requests.IDirectResponseSchema
In This Article
Back to top