Skip to content

Latest commit

 

History

History
39 lines (25 loc) · 884 Bytes

Excel.Chart.AutoScaling.md

File metadata and controls

39 lines (25 loc) · 884 Bytes
title keywords f1_keywords api_name ms.assetid ms.date ms.localizationpriority
Chart.AutoScaling property (Excel)
vbaxl10.chm149080
vbaxl10.chm149080
Excel.Chart.AutoScaling
fecafb42-56fb-3c33-dc03-cb290b4a28df
04/16/2019
medium

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

[!includeSupport and feedback]