TiPlotAxis.TrackingEnabled

TiPlotAxis See Also

Specifies whether the axis will adjust itself to new tracking data from the channels.

property TrackingEnabled : Boolean;

Description

Use TrackingEnabled to specify whether the axis will adjust itself to new tracking data from the channels. Depending on the TrackingStyle, When the TrackingEnabled property is set to TRUE, the axis will scroll or compress based on the new tracking data.

Example

Delphi

iComponent.XAxis[0].TrackingEnabled := True;

iComponent.YAxis[0].TrackingEnabled := True;

C++ Builder

iComponent->XAxis[0]->TrackingEnabled = True;

iComponent->YAxis[0]->TrackingEnabled = True;

Contents | Index | Previous | Next