TiPlotChannel.BarBrushStyle

TiPlotChannel

Specifies the brush style used when drawing the Data Point Bars.

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

property BarBrushStyle : TBrushStyle;

Description

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

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].BarBrushStyle := bsSolid;

C++ Builder

iComponent->Channel[0]->BarBrushStyle = bsSolid;

Contents | Index | Previous | Next