Skip to main content
All docs
V25.1
  • 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.

    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