TiStripChart.ChannelLineStyle

TiStripChart See Also

Used to set the LineStyle of a channel.

type TiChannelLineStyle = (iclsSolid, iclsDash, iclsDot, iclsDashDot, iclsDashDotDot);

property ChannelLineStyle [Index: Integer] : TiChannelLineStyle;

Description

Use the ChannelLineStyle property to get or set the LineStyle of a channel.

Value
Meaning
iclsSolid
A solid line.
iclsDash
A line made up of a series of dashes.
iclsDot
A line made up of a series of dots.
iclsDashDot
A line made up of alternating dashes and dots.
iclsDashDotDot
A line made up of a serious of dash-dot-dot combinations.

Example

Delphi

iComponent.ChannelLineStyle[1] := iclsSolid; //Sets 2nd Channel Line Style

C++ Builder

iComponent->ChannelLineStyle[1] = iclsSolid; //Sets 2nd Channel Line Style

Note: ChannelLineWidth must be 1 for any LineStyle other than iclsSolid or the line will appear solid.

Note: The index value is 0 based.

Contents | Index | Previous | Next