ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage functions / Controls, pages and windows / Chart functions
WINDEV
WindowsLinuxUniversal Windows 10 AppJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac CatalystUniversal Windows 10 App
Others
Stored procedures
Identifies or defines whether a series is refreshed whenever the chart is drawn. In this case, the content of the series is automatically recalculated whenever grDraw is called.
Use example: a series in a chart is used as reference series: this series is not automatically refreshed.
Linux Caution: A specific configuration is required to use this function in Linux. For more details, see The charts.
Example
// Chart created through programming
IF grAutoRefreshSeries("MyChart", 5) = True THEN
grDraw("MyChart")
END
// Chart control
IF grAutoRefreshSeries(CHART_MyChart, 5) = True THEN
grDraw(CHART_MyChart)
END
Syntax

Identifying the mode used to refresh the series Hide the details

<Result> = grAutoRefreshSeries(<Chart name> , <Series number>)
<Result>: Boolean
Current mode for updating the series:
  • True if the series is automatically refreshed,
  • False otherwise.
<Chart name>: Control name or character string
Name of the chart to be used. This name corresponds to:
  • the chart name defined through programming with grCreate.
  • the name of the Chart control in the window, page or report editor.
Android Only Chart controls are available.
PHP Only the interactive Chart controls are available.
<Series number>: Integer
Number of the affected series.

Defining the mode used to refresh the series Hide the details

grAutoRefreshSeries(<Chart name> , <Series number> , <Refresh mode>)
<Chart name>: Control name or character string
Name of the chart to be used. This name corresponds to:
  • the chart name defined through programming with grCreate.
  • the name of the Chart control in the window, page or report editor.
Android Only Chart controls are available.
PHP Only the interactive Chart controls are available.
<Series number>: Integer
Number of the affected series.
<Refresh mode>: Boolean
  • True if the series must be automatically refreshed,
  • False otherwise.
Remarks
The grAutoRefreshSeries function is equivalent to the AutoRefresh property.
Component: wd290grf.dll
Minimum version required
  • Version 10
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 06/21/2023

Send a report | Local help