TiPlotChannelCustom.DataMarkerBrushStyle

TiPlotChannelCustom

Specifies the brush style used when drawing the data marker for a particular data point.

type TBrushStyle = (bsSolid, bsClear, bsHorizontal, bsVertical, bsFDiagonal, bsBDiagonal, bsCross, bsDiagCross);

property DataMarkerBrushStyle[const Index: Integer : TBrushStyle;

Description

Use DataMarkerBrushStyle to get or set the brush style used when drawing the data marker for a particular data point.

For example, if you specify an Index of 2 (Data Point #3), then you are referring to the Data Marker for Data Point Index 2 (Data Point #3).

As data points are added to the channel, the individual Data Marker Brush Style for each Data Point is automatically populated with the Overall Markers Brush Style property: MarkersBrushStyle. You only need to set the DataMarkerBrushColor property when you want the Data Marker Brush Color for this Data Point to differ from the default.

Important Note! : This property only affects those channels with their DataStyle property set to ipdsFullFeature.

These are the possible values:

Value
Meaning
bsSolid
Solid.
bsClear
Clear.
bsHorizontal
Horizontal Lines.
bsVertical
Vertical Lines.
bsFDiagonal
Diagonal Bottom-Left to Top-Right.
bsBDiagonal
Diagonal Top-Left to Bottom-Right.
bsCross
Combination of bsHorizontal and bsVertical.
bsDiagCross
Combination of bsFDiagonal and bsBDiagonal.

Example

Delphi

//Sets brush style of data marker for the 101st data point

iComponent.Channel[0].DataMarkerBrushStyle[100] := bsSolid;

C++ Builder

//Sets brush style of data marker for the 101st data point

iComponent->Channel[0]->DataMarkerBrushStyle[100] = bsSolid;

Contents | Index | Previous | Next