全部显示

AxisGroup 属性

       

应用于 ChartGroup 对象和 Series 对象的 AxisGroup 属性。

应用于 Axis 对象的 AxisGroup 属性。

说明

对于三维图表,仅 xlPrimary 有效。

示例

如果数值轴属于次坐标轴组,本示例将删除该数值轴。

With myChart.Axes(xlValue)
    If .AxisGroup = xlSecondary Then .Delete
End With