ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

This content has been translated automatically.  Click here  to view the French version.
Help / WLanguage / WLanguage functions / Controls, pages and windows / Chart functions
  • Tooltip options to configure
  • Enabling/Disabling the tooltip
  • Formatting the elements displayed in the tooltip
WINDEV
WindowsLinuxJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac Catalyst
Others
Stored procedures
Displays and formats:
  • the tooltip associated with each section of a chart (section of a Pie chart, column of a Column chart, etc.). This function also gets the characteristics of the tooltip associated with each section of the chart.
  • a custom tooltip, associated with a point.
By default, a tooltip is automatically displayed (grShowTooltip set to True) when a chart is hovered by the mouse cursor.
WEBDEV - Server codeWEBDEV - Browser code In a page of a WEBDEV website, the chart must be interactive in order for the tooltip to be displayed. To make the chart interactive, check "Interactive chart" in the "Details" tab of the control description.
Example
WindowsLinuxiPhone/iPad
// Graphe créé par programmation
i is int
// Création du graphe
grCreate("MonGraphe", grPie)
// Destination du graphe
grDestinationControl("MonGraphe", IMG_Image1)
// Affichage des pourcentages
grLabel("MonGraphe", grShowPercent, True)
// Ajout des données
nValeur is int
FOR i = 1 TO 20
	nValeur = Random(30)
	grAddData("MonGraphe", 1, nValeur)
	grCategoryLabel("MonGraphe", i, "Test" + i)
	grSeriesLabel("MonGraphe", 1," Série de test")
END
grTooltip("MonGraphe", grTooltipFormatPie, -%"[%SERIE%]" + CR + ...
	-%"[%CATEGORIE%]" + CR + -%"[%%%]")
grTooltip("MonGraphe", grShowTooltip, True)
// Dessin du graphe
grDraw("MonGraphe")
// Champ Graphe
// Affichage des pourcentages sur un histogramme
grLabel(GRF_MonGraphe, grShowPercent, True)
grTooltip(GRF_MonGraphe, grTooltipFormat, -%"[%SERIE%]" + CR + -%"[%CATEGORIE%]" + ...
	CR + -%"[%VALEUR%]")
grTooltip(GRF_MonGraphe, grShowTooltip, True)
// Dessin du graphe
grDraw(GRF_MonGraphe)
// Champ Graphe
// Affichage d'une bulle spécifique pour un point
grTooltip(GRF_MonGraphe, 1, 2, "Le contenu de ma bulle d'aide")
// Dessin du graphe
grDraw(GRF_MonGraphe)
Syntax

Displaying and formatting the tooltip associated with a chart Hide the details

grTooltip(<Chart name> , <Tooltip option to configure> , <Tooltip option value>)
<Chart name>: Control name or character string
Name of the chart to be used. This name corresponds to:
  • the name of the chart defined programmatically with grCreate.
  • the name of the Chart control in the window editor.
Android Only Chart controls are available.
WEBDEV - Browser codePHP Only interactive Chart controls are available.
<Tooltip option to configure>: Integer constant
Enables or disables the tooltip and configures its characteristics.
grShowTooltipEnables or disables the tooltip.
grTooltipFormatDefines the tooltip format.
grTooltipFormatBubbleChartDefines the tooltip format in a Bubble chart.
Android This constant is not available.
grTooltipFormatCrosshairHeaderDefines the format of the chart crosshair header.
grTooltipFormatHeatMapDefines the tooltip format in a Heatmap chart.
Android This constant is not available.
grTooltipFormatPieDefines the tooltip format in a Pie chart.
grTooltipFormatRangeAreaDefines the tooltip format in a Range Area chart.
grTooltipFormatScatterDefines the tooltip format in a Scatter chart.
Android This constant is not available.
grTooltipFormatStockDefines the tooltip format in a Stock chart.
Android This constant is not available.
grTooltipFormatWaffleDefines the tooltip format in a Waffle chart.
<Tooltip option value>: Character string or boolean
Value of the selected tooltip option. This value depends on the selected option (see the above table).

Getting the characteristics of the tooltip associated with a chart Hide the details

<Result> = grTooltip(<Chart name> , <Tooltip option>)
<Result>: Type corresponding to the option (boolean or character string)
Value of the search option.
<Chart name>: Control name or character string
Name of the chart to be used. This name corresponds to:
  • the name of the chart defined programmatically with grCreate.
  • the name of the Chart control in the window editor.
Android Only Chart controls are available.
WEBDEV - Browser codePHP Only interactive Chart controls are available.
<Tooltip option>: Integer constant
Tooltip option whose value you want to get.
grShowTooltipEnables or disables the tooltip.
grTooltipFormatDefines the tooltip format.
grTooltipFormatBubbleChartDefines the tooltip format in a Bubble chart.
Android This constant is not available.
grTooltipFormatCrosshairHeaderDefines the format of the chart crosshair header.
grTooltipFormatHeatMapDefines the tooltip format in a Heatmap chart.
Android This constant is not available.
grTooltipFormatPieDefines the tooltip format in a Pie chart.
grTooltipFormatRangeAreaDefines the tooltip format in a Range Area chart.
Android This constant is not available.
grTooltipFormatScatterDefines the tooltip format in a Scatter chart.
Android This constant is not available.
grTooltipFormatStockDefines the tooltip format in a Stock chart.
Android This constant is not available.
grTooltipFormatWaffleDefines the tooltip format in a Waffle chart.

Displaying and customizing the tooltip associated with a point Hide the details

grTooltip(<Chart name> , <Series number> , <Category number> , <Tooltip value>)
<Chart name>: Control name or character string
Name of the chart to be used. This name corresponds to:
  • the name of the chart defined programmatically with grCreate.
  • the name of the Chart control in the window or page editor.
Android Only Chart controls are available.
WEBDEV - Browser codePHP Only interactive Chart controls are available.
<Series number>: Integer
Number of the series to use.
<Category number>: Integer
Number of the category to use.
<Tooltip value>: Character string
Custom text of the tooltip associated with the point.
Remarks

Tooltip options to configure

ConstantEffectOption value
grShowTooltipEnables or disables the tooltip.Boolean
  • True (by default) to enable the tooltip,
  • False to disable the tooltip.
Caution: tooltip parameters are not reset on display.
grTooltipFormatDefines the tooltip format.Character string
  • Empty string to use the default format.
  • Combination of the following strings:
    [%SERIE%]: Displays the series label (defined with the grSeriesLabel function)..
    [%CATEGORY%]: Displays the category label (defined with the grCategoryLabel function)..
    [%VALUE%]: Displays the value
    Example: "[%VALUE%]"+CR+"[%CATEGORY%]"
The default format is: "[%CATEGORY%]"+RC+"[%SERIES%]"+"="+"[%VALUE%]".
grTooltipFormatStockDefines the tooltip format in a Stock chart.Character string
  • Empty string to use the default format.
  • Combination of the following strings:
    [%SERIE%]: Displays the series label (defined with the grSeriesLabel function)..
    [%CATEGORY%]: Displays the category label (defined with the grCategoryLabel function)..
    [%MAX%]: Displays the session's maximum value.
    [%MIN%]: Displays the session's minimum value.
    [%DEBUT%]: Displays the first value of the session.
    [%FIN%]: Displays the session end value.
By default, the format is as follows:
"[%CATEGORY%]"+CR+"Min.=[%MIN%]"+CR+"Max.=[%MAX%]"+CR+"Open=[%OPEN%]"+CR+"Close=[%CLOSE%]"
grTooltipFormatRadialBarDefines the tooltip format in a Radial Bar chart.Character string
  • Empty string to use the default format.
  • Combination of the following strings:
    [%SERIE%]: Displays the series label (defined with the grSeriesLabel function)..
    [%CATEGORY%]: Displays the category label (defined with the grCategoryLabel function)..
    [%VALUE%]: Displays the value
    [%%%]: Displays the percentage
    Exemple: "[%VALEUR%]"+RC+"[%CATEGORIE%]"+RC+"[%%%]"
The default format is "[%CATEGORY%]"+RC+"[%VALUE%]"+RC+"[%%%]".
grTooltipFormatCrosshairHeaderDefines the format of the chart crosshair header.Character string
  • Empty string to use the default format.
  • Character string containing the following string:
    [%CATEGORY%]: Displays the category label (defined with the grCategoryLabel function)..
The default format is "[%CATEGORY%]". Stacked histogram: You can add the stack total to the tooltip of a stacked histogram using the following syntax:
grTooltip(MySelf, grTooltipFormatCrosshairHeader, ...
"[%CATEGORIE%], Somme = [%VALEUR%]")
grTooltipFormatBubbleChartDefines the tooltip format in a Bubble chart.Character string
  • Empty string to use the default format.
  • Combination of the following strings:
    [%SERIE%]: Displays the series label (defined with the grSeriesLabel function)..
    [%CATEGORY%]: Displays the category label (defined with the grCategoryLabel function)..
    [%X%]: Displays abscissa (first series)
    [%Y%]: Displays ordinate (second series)
    [%Z%]: Displays the value of the third series..
The default format is "([%X%];[%Y%]): [%Z%]"+RC+"[%CATEGORY%]".
grTooltipFormatScatterDefines the tooltip format in a Scatter chart.Character string
  • Empty string to use the default format.
  • Combination of the following strings:
    [%SERIE%]: Displays the series label (defined with the grSeriesLabel function)..
    [%CATEGORY%]: Displays the category label (defined with the grCategoryLabel function)..
    [%X%]: Displays abscissa.
The default format is "[%X%]"+RC+"[%Y%]"+RC+"[%SERIE%]"+RC+"[%CATEGORIE%]".
grTooltipFormatHeatMapDefines the tooltip format in a Heatmap chart. Character string
  • Empty string to use the default format.
  • Combination of the following strings:
    [%SERIE%]: Displays the series label (defined with the grSeriesLabel function)..
    [%CATEGORY%]: Displays the category label (defined with the grCategoryLabel function)..
    [%X%]: Displays abscissa (first series)
    [%Y%]: Displays ordinate (second series)
    [%Z%]: Displays the value of the third series..
The default format is "([%X%];[%Y%]): [%Z%]"+RC+"[%CATEGORY%]".
grTooltipFormatPieDefines the tooltip format in a Pie chart.Character string
  • Empty string to use the default format.
  • Combination of the following strings:
    [%SERIE%]: Displays the series label (defined with the grSeriesLabel function)..
    [%CATEGORY%]: Displays the category label (defined with the grCategoryLabel function)..
    [%VALUE%]: Displays the value
    [%%%]: Displays the percentage
    Exemple: "[%VALEUR%]"+RC+"[%CATEGORIE%]"+RC+"[%%%]"
The default format is "[%CATEGORY%]"+RC+"[%VALUE%]"+RC+"[%%%]".
grTooltipFormatWaffleDefines the tooltip format in a Waffle chart.Character string
  • Empty string to use the default format.
  • Combination of the following strings:
    [%CATEGORY%]: Displays the category label (defined with the grCategoryLabel function)..
    [%VALUE%]: Displays the value
    [%%%]: Displays the percentage
    Exemple: "[%VALEUR%]"+RC+"[%CATEGORIE%]"+RC+"[%%%]"
The default format is "[%CATEGORY%]"+RC+"[%VALUE%]"+RC+"[%%%]".
grTooltipFormatRangeAreaDefines the tooltip format in a Range Area chart.Character string
  • Empty string to use the default format.
  • Combination of the following strings:
    [%DEBUT%]: Displays interval start value.
    [%FIN%]: Displays end of interval value.
    [%CATEGORY%]: Displays the category label (defined with the grCategoryLabel function)..
    Example: "[%OPEN%]"+CR+"[%CLOSE%]"+CR+"[%CATEGORY%]"
The default format is: "[%DEBUT%]"+RC+"[%FIN%]

If the default format is used:
  • "[%CATEGORY%]" is ignored if no category label was specified by grCategoryLabel.
  • "[%SERIES%]" is ignored if no series label was specified with grSeriesLabel.
Warning: If you use dynamic string construction (option "Allow "[% %]" in strings" in the "Compilation" tab of the project description), a compilation error will appear (unknown identifier).. In this case, each string must be preceded by '-%'. Example:
grTooltip(GRF_Echéance, grTooltipFormat, "[%CATEGORIE%]" + CR + CR+ "[%VALEUR%]" + " H")
becomes
grTooltip(GRF_Echéance, grTooltipFormat, -%"[%CATEGORIE%]" + CR + CR + -%"[%VALEUR%]" + " H")

Enabling/Disabling the tooltip

The tooltip activation/deactivation (grShowTooltip constant) takes effect only when grDraw is executed.
WEBDEV - Browser code The activation/deactivation of the tooltip (grShowTooltip constant) takes effect immediately.

Formatting the elements displayed in the tooltip

To format the values displayed in the tooltip (value and percentage), use grMask.
Business / UI classification: UI Code
Component: wd300grf.dll
Minimum version required
  • Version 9
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 09/21/2024

Send a report | Local help