ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage functions / Controls, pages and windows / Chart functions
  • Label of a network
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
Indicates various parameters of additional legend in a chart.
Example of additional legends:
Additional legends
Example
// Graphe créé par programmation
// Affichage du libellé des étiquettes des catégories de données dans le graphe "MonGraphe"
grLabel("MonGraphe", grShowLabel, True)
// Champ Graphe
// Affichage du libellé des pourcentages des catégories de données dans le graphe "GRF_MonGraphe"
grLabel(GRF_Graphe, grShowPercent, True)
Syntax
grLabel(<Chart name> , <Additional legend> , <Display>)
<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 Chart control found in the window editor, page editor or report editor.
<Additional legend>: Constant
Additional legend that will be displayed with the chart:
  • with a pie chart:
    grShowLabelLabel of data categories.
    grShowPercentPercentage of data categories.
    grShowValueValue of data categories.
  • with a column chart:
    grShowValueValue of data categories.
  • with a stacked column chart:
    grShowValueIfNullLabel of data categories, even for the null values in the stacked column chart.
<Display>: Boolean
  • True if the additional legend must be displayed,
  • False otherwise.
Remarks

Label of a network

The chart caption can include three elements:
  • the category labels.
  • the value of categories.
  • the percentage of categories.
Labels of a graph
The chart caption can be displayed for the pie charts, column charts and stacked column charts only.
The function grLabel allows to display the different elements of the graph label. Different elements are displayed according to the type of chart.
The category labels displayed correspond to the ones defined by grCategoryLabel.
The value of categories depends on the chart data.
The percentage of categories is automatically calculated.
The information display can be formatted by grMask.
The modifications performed by grLabel will be taken into account during the next call to grDraw.
Related Examples:
The Chart functions 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
WD Chart Training (WINDEV): WD Chart
[ + ] This example presents the different uses of the Chart control.
Different types of charts are presented:
- Pie
- Sunburst
- Line
- Scatter
- Column
- Area
- etc.

The main features presented here are the possibility to customize of charts from the code, as well as to fill the chart from an HFSQL data file, or in the editor.
The Chart functions 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, ...)
The Chart functions 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, ...)
Component: wd270grf.dll
Minimum version required
  • Version 9
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 06/22/2023

Send a report | Local help