ChartUpdateRate property (XY Plot object)
Returns or sets the rate at which traces will be updated when in Live Mode. Read/write. Long.
Syntax
XYPlot1
.ChartUpdateRate
[ = value
]where
XYPlot1
- is the name of an XY Plot object or an expression that evaluates to an XY Plot object.value
– is a parameter of the type Long that specifies the chart update rate in milliseconds.The minimum value is 250, and maximum value is 2147483.Example
Private Sub SetChartUpdateRate() XYPlot1.ChartUpdateRate = 1000 End Sub
Provide Feedback