corelibraries-devexpress-dot-xtragauges-dot-core-dot-model-dot-scalerange.md
Gets or sets the start value of the range, as a percentage.
Namespace : DevExpress.XtraGauges.Core.Model
Assembly : DevExpress.XtraGauges.v25.2.Core.dll
NuGet Package : DevExpress.Gauges.Core
[DefaultValue(null)]
public float? StartPercent { get; set; }
<DefaultValue(Nothing)>
Public Property StartPercent As Single?
| Type | Default | Description |
|---|---|---|
| Nullable<Single> | null |
A nullable Single value that specifies the start value of the range, as a percentage.
|
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