TiAngularGauge.TickLabelAlignment

TiAngularGauge

Specifies the how the labels are aligned at the tick label positions.

type TiLabelAlignment = (ilaCenter, ilaJustified);

property TickLabelAlignment : TiLabelAlignment;

Description

Set TickLabelAlignment to specify how the labels are aligned at the tick label positions. For labels that are roughly all the same size, ilaCenter is the best alignment style to use and gives the most professional look. When the size of the labels are not close, ilaJustified gives the most professional look.

These are the possible values:

Value
Meaning
ilaCenter
Labels are aligned Center to the label point.
ilaJustified
Labels are aligned Justified to the label point.

Example

Delphi

iComponent.TickLabelAlignment := ilaCenter;

C++ Builder

iComponent->TickLabelAlignment = ilaCenter;

Contents | Index | Previous | Next