ActiveXAxisScalingMode property
Returns or sets the x-axis scaling mode for the current tag in the runtime chart. Read/write. Single.
Syntax
XYPlot1
.ActiveXAxisScalingMode
[ = 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 x-axis scaling mode:- Automatic= 0
- Manual= 1
- UseTagMinMax= 2
- UseTagValue= 3
Example
Private Sub SetActiveXAxisScalingMode() XYPlot1.ActiveXAxisScalingMode = 1 End Sub
Provide Feedback