Back to Devexpress

TdxChartAxisTicksCrossKind Enum

vcl-dxchartxydiagram-725b4eba.md

latest2.0 KB
Original Source

TdxChartAxisTicksCrossKind Enum

Enumerates available axis tick mark display modes.

Declaration

delphi
TdxChartAxisTicksCrossKind = (
    Outside,
    Cross,
    Inside
);

Members

NameDescriptionExample (Y-Axis)
Outside

Major or minor tick marks are displayed along an axis from the outer side of an XY diagram.

|

| | Cross |

Major or minor tick marks are centered on an axis and cross it.

|

| | Inside |

Major or minor tick marks are displayed along an axis from the inner side of an XY diagram.

|

|

Remarks

The following public API members reference the TdxChartAxisTicksCrossKind type:

TdxChartAxisTicks.CrossKindSpecifies how major tick marks are displayed along an axis.TdxChartAxisTicks.MinorCrossKindSpecifies how minor tick marks adjoin an axis.

Note

TdxChartAxisTicksCrossKind 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 TdxChartAxisTicksCrossKind.Cross (in Delphi) or TdxChartAxisTicksCrossKind::Cross (in C++Builder) to refer to the Cross value in code.

See Also

dxChartXYDiagram Unit