SingleTraceMode property (XY Plot object)
Returns or sets whether the single trace mode is on. Read/write. Boolean.
Syntax
XYPlot1
.SingleTraceMode
[= 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: Turns on the single trace mode at runtime.
- False: Turns off the single trace mode at runtime.
Example
Private Sub SingleTraceMode() XYPlot1.SingleTraceMode = True End Sub
Provide Feedback