Skip to main content
A newer version of this page is available. .

BaseRange.StartThickness Property

Gets or sets the thickness of the range at the starting point, specified by the BaseRange.StartValue property.

Namespace: DevExpress.XtraGauges.Core.Model

Assembly: DevExpress.XtraGauges.v18.2.Core.dll

Declaration

[XtraSerializableProperty]
[DefaultValue(10F)]
public float StartThickness { get; set; }

Property Value

Type Default Description
Single 10

A Single value that specifies the thickness of the range at the starting point, in relative coordinates.

Remarks

To specify the thickness of the range at the ending point, use the BaseRange.EndThickness property.

The following image shows a circular gauge containing a custom range, painted in orange, starting at 60 and ending at 100. The StartThickness is set to 0, while the EndThickness is set to 20.

CustomRange_60_100

See Coordinate System, to learn about relative coordinates.

See Also