ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Your version: 01F250083H (WINDEV 25)

Help / WLanguage / WLanguage functions / Controls, pages and windows / Functions for managing charts / WLanguage functions / Prefixed syntax
WINDEV
WindowsLinuxUniversal Windows 10 AppJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadApple WatchUniversal Windows 10 AppWindows Mobile
Others
Stored procedures
Modifies the caption of a category on the Y axis of a Heatmap chart.
Remark: By default, the caption of a category corresponds to the numeric value of the category.
Example
CHART_HMap.HMCaptionY(1, "Y1")
CHART_HMap.HMCaptionY(2, "Y2")
 
// Caption of axes
FOR EACH ELEMENT nSubscript, nTemperature OF gaaTemperature
CHART_Chart.HMCaptionX(nSubscript, "" + nTemperature)
END
FOR EACH ELEMENT nSubscript, nWind OF gaaWind
CHART_Chart.HMCaptionY(nSubscript, "" + nWind)
END
 
Syntax
<Chart control>.HMCaptionY(<Y> , <Caption>)
<Chart control>: Control name
Name of the Chart control to use (found in the window editor or in the report editor).
<Y>: Integer
Position of category on the Y axis.
<Caption>: Character string (with quotes)
New caption for the category. If this parameter corresponds to an empty string (""), the numeric value of the category is displayed.
Remarks
The caption defined by <Chart>.HMCaptionY will be taken into account during the next call to <Chart>.Draw.
Related Examples:
WD Chart Training (WINDEV): WD Chart
[ + ] This example shows the different uses of the chart control.
The following charts are presented:
- Semi-circular
- Donut
- Pie
- Sunburst
- Line
- Scatter
- 3D Scatter
- Column
- Area
- Bubble
- Radar
- Funnel
- Surface
- Waterfall
- Composite
- Comparative

The main features presented in this example are the customization of charts by programming, as well as the method used to fill a chart from an HFSQL file or in the editor.
Component : wd250grf.dll
Minimum version required
  • Version 23
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 04/30/2020

Send a report | Local help