ActiveYAxisVisible property (XY Plot object)
Returns or sets whether the y-axis for the current tag is displayed in the runtime chart. Read/write. Boolean.
Syntax
XYPlot1
.ActiveYAxisVisible
[= state
]where
XYPlot1
- is the name of an XY Plot object or an expression that evaluates to an XY Plot object.state
- is a parameter of the type Boolean that can be set to one of the following:- True: Shows the y-axis at runtime.
- False: Does not show the y-axis at runtime.
Example
Private Sub SetActiveYAxisVisible() XYPlot1.ActiveYAxisVisible = True End Sub
Provide Feedback