This topic has not yet been rated - Rate this topic

Chart.AutoScaling Property

Office 2007
True if Microsoft Excel scales a 3-D chart so that it's closer in size to the equivalent 2-D 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 3-D chart.

Visual Basic for Applications
With Charts("Chart1")
    .RightAngleAxes = True
    .AutoScaling = True
End With



Did you find this helpful?
(1500 characters remaining)

Community Additions

ADD
© 2013 Microsoft. All rights reserved.