Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

TdxGaugeScaleRangeValueLinkedWithScaleValue Enum

Enumerates range bar positioning variants within a quantitative scale.

#Declaration

Delphi
TdxGaugeScaleRangeValueLinkedWithScaleValue = (
    rlsvNone,
    rlsvValueStart,
    rlsvValueEnd
);

#Members

Name
rlsvNone
rlsvValueStart
rlsvValueEnd

#Remarks

Options include:

Value

Meaning

Example

rlsvNone

The range bar’s length and position are unaffected by the scale’s value and determined by the ValueStart and ValueEnd properties implemented in the TdxGaugeCustomRange class.

rlsvValueStart

The current value of the scale is used as the range bar’s start value. The value of the TdxGaugeCustomRange.ValueStart property is ignored.

rlsvValueEnd

The current value of the scale is used as the range bar’s end value. The value of the TdxGaugeCustomRange.ValueEnd property is ignored.

This type is referenced by the LinkedWithScaleValue property implemented in the TdxGaugeCustomRange class.

See Also