ActiveYAxisMajorTickScale property (XY Plot object)
Returns or sets the y-axis major tick scale for the current tag in the runtime chart. Read/write. Single.
Syntax
XYPlot1
.ActiveYAxisMajorTickScale
[= 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 major tick scale. The minimum value is 0, maximum value is the upper limit of a Single data type.Example
Private Sub SetActiveYAxisMajorTickScale() XYPlot1.ActiveYAxisMajorTickScale = 2 End Sub
Provide Feedback