Show AllShow All

AxisGroup Property

ShowAxisGroup property as it applies to the ChartGroup and Series objects.

ShowAxisGroup property as it applies to the Axis object.

Remarks

For 3-D charts, only xlPrimary is valid.

Example

This example deletes the value axis if it's in the secondary group.

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