ChartGroup.AxisGroup property (Excel)

Returns or sets the group for the specified chart. Read/write.

Syntax

expression.AxisGroup

expression A variable that represents a ChartGroup object.

Return value

XlAxisGroup

Remarks

For 3D charts, only xlPrimary is valid.

Example

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

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

Support and feedback

Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.