ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage properties / Various properties
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
The Thickness property is used to:
  • Find out and modify the line thickness for a series (Line charts only).
    Remark: This property is equivalent to grLineThickness.
  • WINDEV Find out and modify the thickness of the line for a Wire control.
Example
// Thickness of series 2
CHART_MyChart[2].Thickness = 5
WINDEV
// Create and initialize a Wire control
// This wire links the BTN_ControlA and BTN_ControlB controls
WireName is Control
 
WireName <- ControlCreate("", typWire)
WireName.StartControl = BTN_ControlA
WireName.EndControl = BTN_ControlB
WireName.ShapeExtremityStart = shapeDiamond
WireName.ShapeExtremityEnd = shapeCircle
WireName.ShapeExtremitySize = 8
WireName.Thickness = 5
Syntax

Finding out the thickness of a series or Wire control Hide the details

<Result> = <Element>.Thickness
<Result>: Integer
Thickness of the element.
<Element>: Character string
  • Series to use. Use the following notation: <Chart name>[<Series number>].
  • WINDEV Name of the Wire control to be used.

Modifying the thickness of a series or Wire control Hide the details

<Element>.Thickness = <New thickness>
<Element>: Character string
  • Series to use. Use the following notation: <Chart name>[<Series number>].
  • WINDEV Name of the Wire control to be used.
<New thickness>: Character string
  • Thickness of the specified series. This parameter can correspond to a value greater than 0. The line thickness is set to 1 by default.
  • WINDEV Thickness of the Wire control. This parameter can correspond to a value greater than 0. The line thickness is set to 2 by default.
Minimum version required
  • Version 10
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 07/03/2023

Send a report | Local help