Skip to main content
All docs
V25.1
  • 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 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.

    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

    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