|
|
|
|
|
- Creating and drawing a chart through programming
- Drawing several charts at the same time
- Charts and threads
- Default values of a chart created through programming
grCreate (Function) In french: grCrée Creates a specific type of chart. Remarks: - It is recommended to create a Chart control directly rather than using grCreate. Indeed, the Chart control offers many more features.
- This function can only be used to create a chart through programming. This function cannot be used in the window editor, page editor or report editor.
grCreate("MyChart", grColumn)
Syntax
grCreate(<Chart name> , <Chart type> [, <Persistence>])
<Chart name>: Character string Name of chart to create. This name will be used by all functions for chart management.
Caution: this name must not correspond to the name of a Chart control. <Chart type>: Constant Specifies the type of chart to create: The type of chart can be modified later by grType. <Persistence>: Optional boolean - True (default value) to save the modifications made to the chart by the user via the popup menu,
- False not to save these modifications.
Remarks Creating and drawing a chart through programming To create and draw a chart: Drawing several charts at the same time Several charts with the same name cannot exist at the same time. To draw several charts at the same time (in one or more windows for example), different chart names must be specified. Charts and threads A single chart can be handled in a thread. Consequences: - Two threads cannot handle the same chart.
- A chart created in a thread is automatically destroyed at the end of this thread. The chart exists in the thread that contains the call to grCreate.
Default values of a chart created through programming The default values of a chart are as follows:
Related Examples:
|
Unit examples (WINDEV): The Chart functions
[ + ] Using the main chart designer features of WINDEV: - Create a Pie, Column or Line chart - Define the display area of a chart - Define the chart options (legend, percentage, ...) - Draw a line on a chart
|
|
Unit examples (WEBDEV): The Chart functions
[ + ] This example presents the main features of the chart designer of WEBDEV and it allows you to: - Create a chart: Pie, Column or Line - Define the display area of a chart - Define the options of the chart (legend, percentage, ...)
|
|
Unit examples (WINDEV Mobile): The Chart functions
[ + ] Using the Chart functions: - create a Pie, Column or Line chart by programming - define the chart options (legend, percentage, ...)
|
Business / UI classification: Neutral code
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|