Skip to content

Latest commit

 

History

History
40 lines (27 loc) · 928 Bytes

Excel.MaximumScaleIsAuto.md

File metadata and controls

40 lines (27 loc) · 928 Bytes
title keywords f1_keywords api_name ms.assetid ms.date ms.localizationpriority
MaximumScaleIsAuto property (Excel Graph)
vbagr10.chm65572
vbagr10.chm65572
Excel.MaximumScaleIsAuto
ca8115b8-0a45-0c88-5a5c-89c93d791452
04/11/2019
medium

MaximumScaleIsAuto property (Excel Graph)

True if Graph calculates the maximum value for the axis. Read/write Boolean.

Syntax

expression.MaximumScaleIsAuto

expression Required. An expression that returns one of the objects in the Applies To list.

Remarks

Setting the MaximumScale property sets this property to False.

Example

This example automatically calculates the minimum scale and the maximum scale for the value axis.

With myChart.Axes(xlValue) 
 .MinimumScaleIsAuto = True 
 .MaximumScaleIsAuto = True 
End With

[!includeSupport and feedback]