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
<Chart>.SaveParameter (Function)
In french: <Graphe>.SauveParamètre
Saves the parameters of a chart in string format. These parameters can be restored by <Chart>.LoadParameter.
Reminder: By default, the configuration of a chart is automatically saved when closing the application.
Linux Caution: A specific configuration is required to use this function in Linux. For more details, see The charts.
Example
// Save the parameters of a Chart control
INIWrite("Parameters", "CHART_Chart", "Param", CHART_Chart.SaveParameter())
 
// Restore the parameters of a Chart control
CHART_Chart.LoadParameter(INIRead("Parameters", "CHART_Chart", "Param"))
Syntax
<Result> = <Chart control>.SaveParameter()
<Result>: ANSI character string
  • Chart settings. This string can be saved in order to be restored later by <Chart>.LoadParameter.
  • Empty string ("") if an error occurred.
<Chart control>: Control name
Name of the Chart control to use (in the window, page or report editor).
Remarks
The following chart parameters will be saved:
  • the type of chart.
  • the title of the chart and its position.
  • the position of the legend.
  • the spacing between two bars for the column charts.
  • the depth for the column charts.
  • the characteristics of the gradient.
  • the orientation of axes.
  • the gridlines.
  • the 3D parameters for the charts in 3 dimensions.
  • the characteristics of the fonts used.
  • the characteristics of the smoothing.
Component: wd290grf.dll
Minimum version required
  • Version 23
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 06/21/2023

Send a report | Local help