Back to Devexpress

TdxChartTitlePosition Enum

vcl-dxchartcore-db057a0e.md

latest2.0 KB
Original Source

TdxChartTitlePosition Enum

Enumerates Chart title positions within its parent visual element.

Declaration

delphi
TdxChartTitlePosition = (
    Default,
    Left,
    Top,
    Right,
    Bottom
);

Members

NameDescription
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.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

TdxAlignment Type

dxChartCore Unit