ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage functions / Controls, pages and windows / Chart functions
  • Units taken into account for the thickness
  • Miscellaneous
WINDEV
WindowsLinuxJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac Catalyst
Others
Stored procedures
Retrieves and/or modifies the value of the line thickness in a Line chart.
Example
// Champ Graphe
// Modifie l'épaisseur du trait pour toutes les séries du graphe
GRF_MonGraphe.EpaisseurTrait(grAllSeries, 4)
Syntax

Retrieving the thickness of the line (Line chart) Hide the details

<Result> = <Chart control>.LineThickness(<Series number>)
<Result>: Integer
Line thickness.
<Chart control>: Control name
Name of Chart control to be manipulated (present in window or report editor). This chart must be a Line chart.
<Series number>: Integer
Number of the series for which the line thickness is requested.

Modifying the thickness of the line (Line chart) Hide the details

<Chart control>.LineThickness(<Series number> , <New thickness>)
<Chart control>: Control name
Name of Chart control to be manipulated (present in window or report editor). This chart must be a Line chart.
<Series number>: Integer
  • Number of the series for which the line thickness must be modified.
  • grAllSeries constant to change the thickness of all the series (including the new ones).
<New thickness>: Integer
New thickness of the line. This parameter can correspond to a value greater than 0. The line thickness is set to 1 by default.
Remarks

Units taken into account for the thickness

The line thickness corresponds to values greater than or equal to 0.
  • If the thickness corresponds to 0, the thickness will be 1 pixel on the screen (which means 1 pica when printing).
  • If the thickness is greater than 1, the thickness will be x pixels on the screen, which means x picas when printing.

Miscellaneous

  • No error is returned if <Chart>.LineThickness is applied to a chart other than a Line chart. The information is stored and it will be used when the type of the chart is modified (by <Chart>.Type or with the context menu of the chart).
  • Equivalence: the <Chart>.LineThickness is equivalent to Property Thickness.
  • The data defined by <Chart>.LineThickness will be taken into account during the next call to <Chart>.Draw.
Related Examples:
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.
Component: wd300grf.dll
Minimum version required
  • Version 23
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 09/26/2024

Send a report | Local help