Excel.Interfaces.ChartSeriesData interface

An interface describing the data returned by calling chartSeries.toJSON().

Properties

format

Represents the formatting of a chart series, which includes fill and line formatting.

name

Specifies the name of a series in a chart. The name's length should not be greater than 255 characters.

points

Returns a collection of all points in the series.

Property Details

format

Represents the formatting of a chart series, which includes fill and line formatting.

format?: Excel.Interfaces.ChartSeriesFormatData;

Property Value

Remarks

[ API set: ExcelApi 1.1 ]

name

Specifies the name of a series in a chart. The name's length should not be greater than 255 characters.

name?: string;

Property Value

string

Remarks

[ API set: ExcelApi 1.1 ]

points

Returns a collection of all points in the series.

points?: Excel.Interfaces.ChartPointData[];

Property Value

Remarks

[ API set: ExcelApi 1.1 ]