TiStripChart.AutoScrollType

TiStripChart See Also

Specifies the type of AutoScroll.

type TiAutoScroll = (iasSmooth, iasStep, iasPage);

property AutoScrollType : TiAutoScroll;

Description

Set AutoScrollType to specify the type of AutoScroll.

These are the possible values:

Value
Meaning
iasSmooth
The X-Axis is scrolled only enough to bring the last data point into view.
iasStep
The X-Axis is scrolled by an amount equal to AutoScrollStepSize.
iasPage
The X-Axis is scrolled by a full page.

Example

Delphi

iComponent.AutoScrollType := iasSmooth;

C++ Builder

iComponent->AutoScrollType = iasSmooth;

Contents | Index | Previous | Next