应用于 ChartGroup 对象和 Series 对象的 AxisGroup 属性。
返回指定的图表组或数据系列所属的坐标轴组。XlAxisGroup 类型,可读写。
XlAxisGroup 可为以下 XlAxisGroup 常量之一。 |
xlPrimary |
xlSecondary |
expression AxisGroup
expression 必需。该表达式返回上面的对象之一。
返回指定坐标轴所属的坐标轴组。XlAxisGroup 类型,只读。
XlAxisGroup 可为以下 XlAxisGroup 常量之一。 |
xlPrimary |
xlSecondary |
expression AxisGroup
expression 必需。该表达式返回上面的对象之一。
对于三维图表,仅 xlPrimary 有效。
如果数值轴属于次坐标轴组,本示例将删除该数值轴。
With myChart.Axes(xlValue)
If .AxisGroup = xlSecondary Then .Delete
End With