AutoScale property (TrendPro object)
Returns or sets whether the runtime chart will auto scale the y-axis. Read/write. Boolean.
Syntax
TrendPro1
.AutoScale
[ = state
]where
TrendPro1
- is the name of a TrendPro object or an expression that evaluates to a TrendPro object.state
- is a parameter of the type Boolean that can be set to one of the following:- True. Chart will automatically scale the y-axis.
- False. Chart will not automatically scale the y-axis.
Example
Private Sub SetAutoScale() TrendPro1.AutoScale = True End Sub
Provide Feedback