Chart.AutoScaling property (Excel)

True if Microsoft Excel scales a 3D chart so that it's closer in size to the equivalent 2D chart. The RightAngleAxes property must be True. Read/write Boolean.

Syntax

expression.AutoScaling

expression A variable that represents a Chart object.

Example

This example automatically scales Chart1. The example should be run on a 3D chart.

With Charts("Chart1") 
 .RightAngleAxes = True 
 .AutoScaling = True 
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.