Skip to content

Latest commit

 

History

History
23 lines (12 loc) · 478 Bytes

95ed7a2b-efda-b05a-da2e-789a166a97c8.md

File metadata and controls

23 lines (12 loc) · 478 Bytes

MinimumScaleIsAuto Property

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

Remarks

Setting the MinimumScale 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