ChartLiveMode property (XY Plot object)
Returns or sets whether the traces in the runtime chart will update automatically or will require manual updates. Read/write. Boolean.
Syntax
XYPlot1
.ChartLiveMode
[ = 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. Traces in the chart will automatically update at the rate set in the XY Plot's properties.
- False. Traces in the chart will not automatically update. Traces may be manually updated by using theRefreshbutton on the toolbar.
Example
Private Sub SetChartLiveMode() XYPlot1.ChartLiveMode = True End Sub
Provide Feedback