AxisType (Property)

Applies To:

CategoryItems collection

Description:

Returns an enumerated type that represents the axis type (X, Y or Z).

Action:

Read-only

Constants:

The BqChartAxisType group consists of these values:

Example:

This example shows how to determine the Chart axis type:

switch(ActiveDocument.Sections["Chart"].XCategories.AxisType )
{
case bqChartXAxis:
Alert("The axis is X)
Break
case bqChartYAxis:
Alert("The axis is Y)
Break
case bqChartZAxis:
Alert("The axis is Z)
Break
}