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

BaseRange.EndValue Property

Gets or sets the absolute end value of the range.

Namespace: DevExpress.XtraGauges.Core.Model

Assembly: DevExpress.XtraGauges.v19.1.Core.dll

Declaration

[XtraSerializableProperty]
[DefaultValue(1F)]
public float EndValue { get; set; }

Property Value

Type Default Description
Single 1

A Single value that specifies the absolute end value of the range.

Remarks

To specifiy the start value, use the BaseRange.StartValue property.

For ScaleRange objects and their descendants, you can specify bounds for a range as a percentage, rather than an absolute value. This can be accomplished via the ScaleRange.StartPercent and ScaleRange.EndPercent properties.

See Also