TiPlotChannel.DataBarBrushStyle

TiPlotChannel

Specifies the brush style used when drawing the specified Data Point Bar.

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

property DataBarBrushStyle[const Index: Integer : TBrushStyle;

Description

Use BarBrushStyle to get or set the brush style used when drawing the specified Data Point Bar.

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

As data points are added to the channel, the individual Data Bar Brush Style for each Data Point is automatically populated with the Overall Bar Brush Style property: BarBrushStyle. You only need to set the DataBarBrushStyle property when you want the Data Bar Brush Style 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

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

C++ Builder

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

Contents | Index | Previous | Next