ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage functions / Controls, pages and windows / Chart functions
  • Use conditions and limits
  • Creating and drawing a chart through programming
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
grDestinationImage (Function)
In french: grDestinationImage
Defines an Image variable as destination of a chart.
Example
MyImage is Image
MyImage.Width = 100
MyImage.Height = 100
grCreate("MyChart", grPie)
 
// Defines the destination of the chart drawing
grDestinationImage("MyChart", MyImage)
// Adds the data
grAddData("MyChart", 1, 10)
...
// Draws the chart
grDraw("MyChart")
Syntax
grDestinationImage(<Chart name> , <Name of Image variable>)
<Chart name>: Character string
Name of chart to use, defined by grCreate.
<Name of Image variable>: Image variable
Name of the Image variable where the chart will be drawn.
Remarks

Use conditions and limits

  • The chart will be drawn in the specified Image variable. The chart will be drawn on a white background. The previous drawing contained in the Image variable will be deleted.
  • This function cannot be used with the Chart controls.
  • WINDEV This function cannot be used to get the image of a 3D chart. The chart will be automatically converted to 2D.

Creating and drawing a chart through programming

To draw a chart:
Component: wd290grf.dll
Minimum version required
  • Version 19
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 06/21/2023

Send a report | Local help