Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

TdxChartAxisTicksCrossKind Enum

Enumerates available axis tick mark display modes.

#Declaration

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

VCL Chart Control: Major and Minor Tick Marks are Displayed Along X and Y Axes from the Outside

Cross

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

VCL Chart Control: Major and Minor Tick Marks Cross X and Y Axes

Inside

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

VCL Chart Control: Major and Minor Tick Marks are Displayed Along X and Y Axes from the Inside

#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