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

LinearScale.MinValue Property

Gets or sets the minimum value of the linear scale.

Namespace: DevExpress.XtraGauges.Core.Model

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

Declaration

[DefaultValue(0F)]
[XtraSerializableProperty(0)]
public float MinValue { get; set; }

Property Value

Type Default Description
Single 0

A Single value that is the minimum limit of the linear scale.

Remarks

The MinValue and LinearScale.MaxValue properties together define the range of values allowed for the LinearScale. The current value indicated by the level bar is specified by the LinearScale.Value property.

Note that the LinearScale.MaxValue property value shouldn’t necessarily be greater than MinValue. For instance, if you switch their values, this will simply change a linear scale’s direction.

MinValue = 0, MaxValue = 100 (Default) MinValue = 100, MaxValue = 0 (Rotated)
LinearScaleValues_Default LinearScaleValues_Rotated

While the MinValue and MaxValue properties define the limit values, the number of tickmarks (and therefore labels) between them is specified by the LinearScale.MinorTickCount and LinearScale.MajorTickCount properties. The following images demonstrate how these properties can be modified together to customize the linear scale.

Default

MinValue = -10, MaxValue = 10

MinValue = -10, MaxValue = 10,

MinorTickCount = 1, MajorTickCount = 3

LinearScaleValues_Default

LinearScaleValues_MinMaxValues

LinearScaleValues_MinMaxValuesTicks

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the MinValue property.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also