TdxAlignment Enum
Enumerates visual element alignments in relation to the base element position.
Declaration
TdxAlignment = (
Default,
Near,
Center,
Far
);
Members
Name | Description |
---|---|
Default
|
Default. This option indicates the default visual element alignment. Different visual element types interpret the default alignment option differently. In most cases, the |
Near
|
A visual element is aligned to the near border of the parent visual element from the base position. Horizontal Alignment If the
|
Center
|
A visual element is centered at the base position horizontally or vertically. |
Far
|
A visual element is aligned to the far border of the parent visual element from the base position: Horizontal Alignment If the
Vertical Alignment If the |
Remarks
Note
TdxAlignment
is a scoped enumeration type. Use the type name together with a scope resolution token (.
in Delphi or ::
in C++Builder) followed by an enumeration value to refer to this value. For example, use TdxAlignment.Center
(in Delphi) or TdxAlignment::Center
(in C++Builder) to refer to the Center
value in code.
The following public API members reference the TdxAlignment
type:
- TdxChartAxisTicks.LabelAlignment
- Specifies alignment of value labels on an axis.
- TdxChartSimpleSeriesTotalLabel.Position
- Specifies the base total label position in relation to a simple series.
- TdxChartVisualElementTitle.Alignment
- Specifies title alignment.
- TdxChartTitleCollectionItem.Alignment
- Specifies title alignment.
- TdxChartCustomLabels.TextAlignment
- Specifies horizontal value label alignment.