ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage functions / Controls, pages and windows / Chart functions
  • Saving a chart
  • Backup in EMF format
  • Differences between grDestinationEMF and grSaveEMF
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
Saves a chart that was drawn beforehand in a file in EMF format.
Example
// Saves the chart named "CHART_MyChart" in the "C:\Charts\Chart.EMF" file
grSaveEMF(CHART_MyChart, "C:\Charts\Chart.EMF")
Syntax
<Result> = grSaveEMF(<Chart name> , <EMF file name>)
<Result>: Boolean
  • True if the chart was saved,
  • 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.
<EMF file name>: Character string
Name and full path of the EMF file to create. The file extension is mandatory. This EMF file is created when grSaveEMF is called. The file is overwritten and re-created if it already existed.
Remarks

Saving a chart

  • To save a chart, the chart must have been drawn beforehand (grDraw). The modifications performed since the last call to grDraw will be ignored.
  • The default size of the image is set to 639 x 479. These dimensions are taken into account if the chart was never drawn or if it is not visible.
  • If the chart was created by grCreate, the dimensions can be specified with grWndSize.

Backup in EMF format

  • This file can be read by a tool that recognizes the EMF format.
  • The size of the file is identical to the size of the destination (size of window size, control or file).
  • We recommend that you preview the chart before it is saved in a file.

Differences between grDestinationEMF and grSaveEMF

  • grDestinationEMF is used to define the destination for the next drawing of the chart. When grDraw is used, the chart will be drawn in the specified file and all the changes made since the chart was last drawn will be taken into account.
  • grSaveEMF is used to save the chart in a file in EMF format. The image saved corresponds to the chart during the last call to grDraw. The changes made to the chart since grDraw was last called will be ignored.
Component: wd290grf.dll
Minimum version required
  • Version 9
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 06/21/2023

Send a report | Local help