TiPlotChannelCustom.MarkersStyle

TiPlotChannelCustom See Also

Specifies the style of the data markers.

type TiPlotMarkerStyle = (ipmsCircle, ipmsSquare, ipmsDiamond, ipmsCross, ipmsPlus, ipmsTriangleUp, ipmsTriangleDown, ipmsTriangleLeft, ipmsTriangleRight);

property MarkersStyle : TiPlotMarkerStyle;

Description

Use MarkersStyle to get or set the style of the data markers.

These are the possible values:

Value
Meaning
ipmsCircle
Circle
ipmsSquare
Square
ipmsDiamond
Diamond
ipmsCross
Cross
ipmsPlus
Plus
ipmsTriangleUp
Triangle Pointing Up
ipmsTriangleDown
Triangle Pointing Down
ipmsTriangleLeft
Triangle Pointing Left
ipmsTriangleRight
Triangle Pointing Right

Example

Delphi

iComponent.Channel[0].MarkersStyle := ipmsSquare;

C++ Builder

iComponent->Channel[0]->MarkersStyle = ipmsSquare;

Contents | Index | Previous | Next