ChartLiveMode property (TrendPro object)
Returns or sets whether the traces in the runtime chart will update automatically or will require manual updates. Read/write. Boolean.
Syntax
TrendPro1
.ChartLiveMode
[ = state
]where
TrendPro1
- is the name of a TrendPro object or an expression that evaluates to a TrendPro 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 trend’s properties.
- False. Traces in the chart will not automatically update. Traces may be manually updated by using theRefreshbutton on the trend’s toolbar.
Example
Private Sub SetChartLiveMode() TrendPro1.ChartLiveMode = True End Sub
Provide Feedback