TdxChartTitlePosition Enum
Enumerates Chart title positions within its parent visual element.
#Declaration
TdxChartTitlePosition = (
Default,
Left,
Top,
Right,
Bottom
);
#Members
Name | Description |
---|---|
Default
|
Default. The default title position. Different visual Chart elements can define the Bottom, Left, Right, or Top value as the default option. The |
Left
|
A title is at the left border of its parent visual element. |
Top
|
A title is at the top border of its parent visual element. |
Right
|
A title is at the right border of its parent visual element. |
Bottom
|
A title is at the bottom border of its parent visual element. |
#Remarks
The following public API members reference the TdxChartTitlePosition
type:
- TdxChartTitleCollectionItem.Position
- Specifies title position within the Chart control.
- TdxChartVisualElementTitle.Position
- Specifies title position within a visual Chart element.
Note
Tdx
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 Tdx
(in Delphi) or Tdx
(in C++Builder) to refer to the Right
value in code.