Chart resource type

Namespace: microsoft.graph

Represents a chart object in a workbook.

Methods

Method Return Type Description
Get Chart WorkbookChart Read properties and relationships of chart object.
Create ChartSeries WorkbookChartSeries Create a new ChartSeries by posting to the series collection.
List series WorkbookChartSeries collection Get a ChartSeries object collection.
Update WorkbookChart Update Chart object.
Image Image base64 encoded string Renders the chart as a base64-encoded image by scaling the chart to fit the specified dimensions.
Delete None Deletes the chart object.
Setdata None Resets the source data for the chart.
Setposition None Positions the chart relative to cells on the worksheet.
List WorkbookChart collection Get chart object collection.
Itemat WorkbookChart Gets a chart based on its position in the collection.
Add WorkbookChart Creates a new chart.

Properties

Property Type Description
height double Represents the height, in points, of the chart object.
id string Gets a chart based on its position in the collection. Read-only.
left double The distance, in points, from the left side of the chart to the worksheet origin.
name string Represents the name of a chart object.
top double Represents the distance, in points, from the top edge of the object to the top of row 1 (on a worksheet) or the top of the chart area (on a chart).
width double Represents the width, in points, of the chart object.

Relationships

Relationship Type Description
axes WorkbookChartAxes Represents chart axes. Read-only.
dataLabels WorkbookChartDataLabels Represents the datalabels on the chart. Read-only.
format WorkbookChartAreaFormat Encapsulates the format properties for the chart area. Read-only.
legend WorkbookChartLegend Represents the legend for the chart. Read-only.
series WorkbookChartSeries collection Represents either a single series or collection of series in the chart. Read-only.
title WorkbookChartTitle Represents the title of the specified chart, including the text, visibility, position and formating of the title. Read-only.
worksheet WorkbookWorksheet The worksheet containing the current chart. Read-only.

JSON representation

Here is a JSON representation of the resource.

{
  "height": 1024,
  "id": "string",
  "left": 1024,
  "name": "string",
  "top": 1024,
  "width": 1024
}