Excel.Interfaces.ChartAxisLoadOptions interface
Represents a single axis in a chart.
Remarks
Properties
$all | Specifying |
format | Represents the formatting of a chart object, which includes line and font formatting. |
major |
Returns an object that represents the major gridlines for the specified axis. |
major |
Represents the interval between two major tick marks. Can be set to a numeric value or an empty string. The returned value is always a number. |
maximum | Represents the maximum value on the value axis. Can be set to a numeric value or an empty string (for automatic axis values). The returned value is always a number. |
minimum | Represents the minimum value on the value axis. Can be set to a numeric value or an empty string (for automatic axis values). The returned value is always a number. |
minor |
Returns an object that represents the minor gridlines for the specified axis. |
minor |
Represents the interval between two minor tick marks. Can be set to a numeric value or an empty string (for automatic axis values). The returned value is always a number. |
title | Represents the axis title. |
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 formatting of a chart object, which includes line and font formatting.
format?: Excel.Interfaces.ChartAxisFormatLoadOptions;
Property Value
Remarks
majorGridlines
Returns an object that represents the major gridlines for the specified axis.
majorGridlines?: Excel.Interfaces.ChartGridlinesLoadOptions;
Property Value
Remarks
majorUnit
Represents the interval between two major tick marks. Can be set to a numeric value or an empty string. The returned value is always a number.
majorUnit?: boolean;
Property Value
boolean
Remarks
maximum
Represents the maximum value on the value axis. Can be set to a numeric value or an empty string (for automatic axis values). The returned value is always a number.
maximum?: boolean;
Property Value
boolean
Remarks
minimum
Represents the minimum value on the value axis. Can be set to a numeric value or an empty string (for automatic axis values). The returned value is always a number.
minimum?: boolean;
Property Value
boolean
Remarks
minorGridlines
Returns an object that represents the minor gridlines for the specified axis.
minorGridlines?: Excel.Interfaces.ChartGridlinesLoadOptions;
Property Value
Remarks
minorUnit
Represents the interval between two minor tick marks. Can be set to a numeric value or an empty string (for automatic axis values). The returned value is always a number.
minorUnit?: boolean;
Property Value
boolean
Remarks
title
Represents the axis title.
title?: Excel.Interfaces.ChartAxisTitleLoadOptions;
Property Value
Remarks
Office Add-ins