TdxChartXYMarkerKind Enum
Declaration
TdxChartXYMarkerKind = (
Circle,
Square,
Diamond,
Triangle,
InvertedTriangle,
Plus,
Cross,
Star,
Pentagon,
Hexagon
);
Members
Name | Description | Example |
---|---|---|
Circle
|
Value markers are circle-shaped. |
|
Square
|
Value markers are square-shaped. |
|
Diamond
|
Value markers are diamond-shaped. |
|
Triangle
|
Value markers are triangle-shaped. |
|
InvertedTriangle
|
Value markers are in the shape of an upside down triangle. |
|
Plus
|
Value markers are plus sign-shaped. |
|
Cross
|
Value markers are cross-shaped. |
|
Star
|
Value markers are in the shape of a five-pointed star. |
|
Pentagon
|
Value markers are pentagon-shaped. |
|
Hexagon
|
Value markers are hexagon-shaped. |
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.