vcl-dxchartcore-db057a0e.md
Enumerates Chart title positions within its parent visual element.
TdxChartTitlePosition = (
Default,
Left,
Top,
Right,
Bottom
);
| 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 Default option corresponds to the Top value for the majority of visual elements.
|
| 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.
|
The following public API members reference the TdxChartTitlePosition type:
TdxChartTitleCollectionItem.PositionSpecifies title position within the Chart control.TdxChartVisualElementTitle.PositionSpecifies title position within a visual Chart element.
Note
TdxChartTitlePosition 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 TdxChartTitlePosition.Right (in Delphi) or TdxChartTitlePosition::Right (in C++Builder) to refer to the Right value in code.
See Also