|
|
|
|
|
AutoRefresh (Property) In french: MAJAutomatique
The AutoRefresh property is used to: - Find out whether the data found in the series is automatically recalculated whenever grDraw is called.
- Modify the mode for recalculating the data found in the series.
// Automatically recalculate the chart for series 2 CHART_MyChart[2].AutoRefresh = True
Syntax
Finding out the calculation mode of a series Hide the details
<Result> = <Series used>.AutoRefresh
<Result>: Boolean - True if the data found in the series is automatically recalculated during the call to grDraw,
- False otherwise.
<Series used>: Character string Series to use. Use the following syntax: <Chart name>[<Series number>].
Modifying the calculation mode of a series Hide the details
<Series used>.AutoRefresh = <New mode>
<Series used>: Character string Series to use. Use the following syntax: <Chart name>[<Series number>]. <New mode>: Boolean - True to automatically recalculate the series whenever grDraw is called,
- False otherwise.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|