ActiveMarkerVisible property (XY Plot object)
Returns or sets whether point markers (measured data points) for the selected trace display. Read/write. Boolean.
Syntax
XYPlot1
.ActiveMarkerVisible
[ = 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: Markers are visible during runtime.
- False: Markers are not visible during runtime.
Example
Private Sub SetActiveMarkerVisible() XYPlot1.ActiveMarkerVisible = True End Sub
Provide Feedback