TiStripChart.GridLineStyle

TiStripChart See Also

Specifies the grid line style.

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

property GridLineStyle : TiChannelLineStyle;

Description

Use GridLineStyle to read or change the grid line style.

These are the possible values:

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.GridLineStyle := iclsSolid;

C++ Builder

iComponent->GridLineStyle = iclsSolid;

Contents | Index | Previous | Next