Skip to main content

ScaleRange.StartPercent Property

Gets or sets the start value of the range, as a percentage.

Namespace: DevExpress.XtraGauges.Core.Model

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

NuGet Package: DevExpress.Gauges.Core

Declaration

[DefaultValue(null)]
public float? StartPercent { get; set; }

Property Value

Type Default Description
Nullable<Single> null

A nullable Single value that specifies the start value of the range, as a percentage.

Remarks

You can specify bounds for a range in absolute values, or as a percentage. To specify bounds in absolute values, use the BaseRange.StartValue and BaseRange.EndValue properties. The StartPercent and ScaleRange.EndPercent properties allow you to specify a range’s bounds in percents.

If the StartPercent and ScaleRange.EndPercent properties are set to non-nullable values, the BaseRange.StartValue and BaseRange.EndValue properties are ignored.

See Also