TdxChartAxisTicksCrossKind Enum
Enumerates available axis tick mark display modes.
Declaration
TdxChartAxisTicksCrossKind = (
Outside,
Cross,
Inside
);
Members
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. |
Remarks
The following public API members reference the TdxChartAxisTicksCrossKind
type:
- TdxChartAxisTicks.CrossKind
- Specifies how major tick marks are displayed along an axis.
- TdxChartAxisTicks.MinorCrossKind
- Specifies 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