Excel.Interfaces.ChartLoadOptions interface
Represents a chart object in a workbook. To learn more about the chart object model, see Work with charts using the Excel JavaScript API.
Remarks
Properties
$all | Specifying |
axes | Represents chart axes. |
data |
Represents the data labels on the chart. |
format | Encapsulates the format properties for the chart area. |
height | Specifies the height, in points, of the chart object. |
left | The distance, in points, from the left side of the chart to the worksheet origin. |
legend | Represents the legend for the chart. |
name | Specifies the name of a chart object. |
series | Represents either a single series or collection of series in the chart. |
title | Represents the title of the specified chart, including the text, visibility, position, and formatting of the title. |
top | Specifies 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 | Specifies the width, in points, of the chart object. |
Property Details
$all
Specifying $all
for the load options loads all the scalar properties (such as Range.address
) but not the navigational properties (such as Range.format.fill.color
).
$all?: boolean;
Property Value
boolean
axes
Represents chart axes.
axes?: Excel.Interfaces.ChartAxesLoadOptions;
Property Value
Remarks
dataLabels
Represents the data labels on the chart.
dataLabels?: Excel.Interfaces.ChartDataLabelsLoadOptions;
Property Value
Remarks
format
Encapsulates the format properties for the chart area.
format?: Excel.Interfaces.ChartAreaFormatLoadOptions;
Property Value
Remarks
height
Specifies the height, in points, of the chart object.
height?: boolean;
Property Value
boolean
Remarks
left
The distance, in points, from the left side of the chart to the worksheet origin.
left?: boolean;
Property Value
boolean
Remarks
legend
Represents the legend for the chart.
legend?: Excel.Interfaces.ChartLegendLoadOptions;
Property Value
Remarks
name
Specifies the name of a chart object.
name?: boolean;
Property Value
boolean
Remarks
series
Represents either a single series or collection of series in the chart.
series?: Excel.Interfaces.ChartSeriesCollectionLoadOptions;
Property Value
Remarks
title
Represents the title of the specified chart, including the text, visibility, position, and formatting of the title.
title?: Excel.Interfaces.ChartTitleLoadOptions;
Property Value
Remarks
top
Specifies 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).
top?: boolean;
Property Value
boolean
Remarks
width
Specifies the width, in points, of the chart object.
width?: boolean;
Property Value
boolean
Remarks
Office Add-ins