vcl-dxchartxydiagram-725b4eba.md
Enumerates available axis tick mark display modes.
TdxChartAxisTicksCrossKind = (
Outside,
Cross,
Inside
);
| Name | Description | Example (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.
|
|
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