Excel.Interfaces.ChartDataTableLoadOptions interface
Represents the data table object of a chart.
Remarks
Properties
$all | Specifying |
format | Represents the format of a chart data table, which includes fill, font, and border format. |
show |
Specifies whether to display the horizontal border of the data table. |
show |
Specifies whether to show the legend key of the data table. |
show |
Specifies whether to display the outline border of the data table. |
show |
Specifies whether to display the vertical border of the data table. |
visible | Specifies whether to show the data table of the chart. |
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
format
Represents the format of a chart data table, which includes fill, font, and border format.
format?: Excel.Interfaces.ChartDataTableFormatLoadOptions;
Property Value
Remarks
showHorizontalBorder
Specifies whether to display the horizontal border of the data table.
showHorizontalBorder?: boolean;
Property Value
boolean
Remarks
showLegendKey
Specifies whether to show the legend key of the data table.
showLegendKey?: boolean;
Property Value
boolean
Remarks
showOutlineBorder
Specifies whether to display the outline border of the data table.
showOutlineBorder?: boolean;
Property Value
boolean
Remarks
showVerticalBorder
Specifies whether to display the vertical border of the data table.
showVerticalBorder?: boolean;
Property Value
boolean
Remarks
visible
Specifies whether to show the data table of the chart.
visible?: boolean;
Property Value
boolean
Remarks
Office Add-ins