應(yīng)用于 ChartGroup 對象和 Series 對象的 AxisGroup 屬性。
返回指定的圖表組或數(shù)據(jù)系列所屬的坐標(biāo)軸組。XlAxisGroup 類型,可讀寫。
XlAxisGroup 可為以下 XlAxisGroup 常量之一。 |
xlPrimary |
xlSecondary |
expression AxisGroup
expression 必需。該表達式返回上面的對象之一。
應(yīng)用于 Axis 對象的 AxisGroup 屬性。
返回指定坐標(biāo)軸所屬的坐標(biāo)軸組。XlAxisGroup 類型,只讀。
XlAxisGroup 可為以下 XlAxisGroup 常量之一。 |
xlPrimary |
xlSecondary |
expression AxisGroup
expression 必需。該表達式返回上面的對象之一。
對于三維圖表,僅 xlPrimary 有效。
如果數(shù)值軸屬于次坐標(biāo)軸組,本示例將刪除該數(shù)值軸。
With myChart.Axes(xlValue)
If .AxisGroup = xlSecondary Then .Delete
End With