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

TdxGaugeLinearScaleAlignElements Type

Enumerates the possible tick mark and scale label alignments in linear scales.

#Declaration

Delphi
TdxGaugeLinearScaleAlignElements = System.Classes.TLeftRight;

#Referenced Class

Type
TLeftRight

#Remarks

Options include:

Value

Description

Example

taLeftJustify

The taLeftJustify value is the opposite of taRightJustify.

All tick marks and scale labels are located to the left of the linear scale‘s level bar. The actual location of these elements depends on the linear scale’s orientation determined by the OptionsView.RotationAngle property value:

raMinus90
Tick marks and scale labels are located to the left of the scale’s level bar;
raPlus90
Tick marks and scale labels are located to the right of the scale’s level bar;
ra0
Tick marks and scale labels are located in the lower half of the linear scale, below the level bar;
ra180
Tick marks and scale labels are located in the upper half of the linear scale, above the level bar.

Left Justify Example

taRightJustify

The taRightJustify value is the opposite of taLeftJustify.

All tick marks and scale labels are located to the right of the linear scale‘s level bar. The actual location of these elements depends on the linear scale’s orientation determined by the OptionsView.RotationAngle property value:

raMinus90
Tick marks and scale labels are located to the right of the scale’s level bar;
raPlus90
Tick marks and scale labels are located to the left of the scale’s level bar;
ra0
Tick marks and scale labels are located in the upper half of the linear scale, above the level bar;
ra180
Tick marks and scale labels are located in the lower half of the linear scale, below the level bar.

Right Justify Example

This type is referenced by the AlignElements property implemented in the TdxGaugeLinearScaleOptionsView class.

See Also