TiStripChart.AutoScrollFirstStyle

TiStripChart See Also

Specifies how AutoScroll aligns the X-Axis when the first data point is plotted.

type TiAutoScrollFirstStyle = (iasfsAuto, iasfsLeftJustify, iasfsRightJustify);

property AutoScrollFirstStyle : TiAutoScrollFirstStyle;

Description

Use AutoScrollFirstStyle to specify how AutoScroll aligns the X-Axis when the first data point is plotted.

These are the possible values:

Value
Meaning
iasfsAuto
X-Axis is unchanged if first data point is in view else Left-Justifies.
iasfsLeftJustify
X-Axis is always adjust to show first data point on far left.
iasfsRightJustify
X-Axis is always adjust to show first data point on far right.

Example

Delphi

iComponent.AutoScrollFirstStyle := iasfsAuto;

C++ Builder

iComponent->AutoScrollFirstStyle = iasfsAuto;

Contents | Index | Previous | Next