Applies To
Chart Object.
Description
If True, Microsoft Excel scales a 3-D chart so that it is closer in size to the equivalent 2-D chart. The RightAngleAxes property must be True. Read-write.
Example
This example automatically scales Chart1. The example should be run on a 3-D chart.
With Charts("Chart1")
.RightAngleAxes = True
.AutoScaling = True
End With