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

TdxGaugeScalePositionType Enum

Enumerates the available methods of scale positioning within the parent object.

#Declaration

Delphi
TdxGaugeScalePositionType = (
    sptFactor,
    sptPixels
);

#Members

Name
sptFactor
sptPixels

#Remarks

Options include:

Value

Meaning

sptFactor

Enables relative scale positioning within the Gauge Control. The scale’s OptionsLayout.CenterPositionFactorX and OptionsLayout.CenterPositionFactorY property values are used to calculate the scale’s position within the parent object‘s area.

sptPixels

Enables absolute scale positioning within the Gauge Control. The OptionsLayout.CenterPositionX and OptionsLayout.CenterPositionY property values specify the absolute distance (in pixels) between the left and top borders of the parent object ‘s area and the scale’s center, respectively.

This type is referenced by the scale’s OptionsLayout.CenterPositionType property.

See Also