TiPlotLimit.Color

TiPlotLimit

Specifies the color of the limit line(s).

property Color : TColor;

Description

Use Color to get or set the color of the limit line or lines…

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 lines 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].Color := clRed;

C++ Builder

iComponent->Limit[0]->Color = clRed;

Contents | Index | Previous | Next