ActiveYAxisScalingMode property (XY Plot object)
Returns or sets the y-axis scaling mode for the current tag in the runtime chart. Read/write. Single.
Syntax
XYPlot1
.ActiveYAxisScalingMode
[ = value
]where
XYPlot1
- is the name of an XY Plot object or an expression that evaluates to an XY Plot object.value
– is a parameter of the type Single that specifies the y-axis scaling mode:- Automatic= 0
- Manual= 1
- UseTagMinMax= 2
- UseTagValue= 3
Example
Private Sub SetActiveYAxisScalingMode() XYPlot1.ActiveYAxisScalingMode = 1 End Sub
Provide Feedback