TiPlotLimit.FillStyle

TiPlotLimit

Specifies the brush style used when drawing band limits.

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

property FillStyle : TBrushStyle;

Description

Use FillStyle to get or set the fill style used when drawing the fill between limit lines. This property has no effect if the Limit Style property is set to iplsLineX or iplsLineY.

These are the possible values:

Value
Meaning
bsSolid
Solid.
bsClear
Clear. No fill will be created, but two solid lines of line width 1 using the Limit's Color property will be drawn at the Line1Position and Line2Position positions.
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.Limit[0].FillStyle := bsSolid;

C++ Builder

iComponent->Limit[0]->FillStyle = bsSolid;

Contents | Index | Previous | Next