TiPlotLimit.Style

TiPlotLimit

Specifies the style of the data cursor object.

type TiPlotLimitStyle = (iplsLineX, iplsLineY, iplsBandX, iplsBandY, iplsPolyBandX, iplsPolyBandY);

property Style : TiPlotLimitStyle;

Description

Use Style to get or set the style of the limit object. The style determines the type of the limit and how it is drawn on the screen and manipulated.

These are the possible values:

Value
Meaning
iplsLineX
Displays a single line perpendicular to the X-Axis at a position specified by Line1Position.
iplsLineY
Displays a single line perpendicular to the Y-Axis at a position specified by Line1Position.
iplsBandX
Displays a filled or two-line band perpendicular to the X-Axis specified by the Line1Position and Line2Position properties.
iplsBandY
Displays a filled or two-line band perpendicular to the Y-Axis specified by the Line1Position and Line2Position properties.
iplsPolyBandX
Displays a filled or two line band using elements (upper and lower limit values specified for a particular Y-Axis positions) added by the AddBandElement method.
iplsPolyBandY
Displays a filled or two line band using band elements (upper and lower limit values specified for a particular Y-Axis positions) added by the AddBandElement method.

Example

Delphi

iComponent.Limit[0].Style := iplsLineY;

C++ Builder

iComponent->Limit[0]->Style = iplsLineY;

Contents | Index | Previous | Next