Skip to main content

TdxChartXYMarkerKind Enum

Enumerates all value marker shapes available for Line and Area series Views.

Declaration

TdxChartXYMarkerKind = (
    Circle,
    Square,
    Diamond,
    Triangle,
    InvertedTriangle,
    Plus,
    Cross,
    Star,
    Pentagon,
    Hexagon
);

Members

Name Description Example
Circle

Value markers are circle-shaped.

VCL Chart Control: Circle-Shaped Value Markers

Square

Value markers are square-shaped.

VCL Chart Control: Square-Shaped Value Markers

Diamond

Value markers are diamond-shaped.

VCL Chart Control: Diamond-Shaped Value Markers

Triangle

Value markers are triangle-shaped.

VCL Chart Control: Triangle-Shaped Value Markers

InvertedTriangle

Value markers are in the shape of an upside down triangle.

VCL Chart Control: Inverted Triangle-Shaped Value Markers

Plus

Value markers are plus sign-shaped.

VCL Chart Control: Plus Sign-Shaped Value Markers

Cross

Value markers are cross-shaped.

VCL Chart Control: Cross-Shaped Value Markers

Star

Value markers are in the shape of a five-pointed star.

VCL Chart Control: Star-Shaped Value Markers

Pentagon

Value markers are pentagon-shaped.

VCL Chart Control: Pentagon-Shaped Value Markers

Hexagon

Value markers are hexagon-shaped.

VCL Chart Control: Hexagon-Shaped Value Markers

Remarks

The Markers.Kind property of Line and Area series Views references the TdxChartXYMarkerKind type.

Note

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

See Also