TiPlotAxis.TrackingStyle

TiPlotAxis See Also

Specifies how the axis adjusts itself in response to new tracking data if off scale.

type TiPlotTrackingStyle = (iptsScaleMinMax, iptsScaleMax, iptsScaleMin, iptsScrollSmooth, iptsScrollPage, iptsExpandCollapse);

property TrackingStyle : TiPlotTrackingStyle;

Description

Use TrackingStyle to specify how the axis adjusts itself in response to new tracking data if off scale.

These are the possible values:

Value
Meaning
iptsScaleMinMax
Will adjust the Min or Span property to keep the new tracking data in view
iptsScaleMax
Will adjust the Max property if necessary to keep the new tracking data in view
iptsScaleMin
Will adjust the Min property if necessary to keep the new tracking data in view
iptsScrollSmooth
If the data is off axis, the scale will be adjusted to show the data at the end of the scale.
iptsScrollPage
If the data is off axis, the scale will be adjusted to show the data at the beginning of the scale.
iptsExpandCollapse
Expands and Collapses the scale to keep all data and data markers in view using up the total area of the DataView.

Example

Delphi

iComponent.XAxis[0].TrackingStyle := iptsScrollSmooth;

iComponent.YAxis[0].TrackingStyle := iptsScrollSmooth;

C++ Builder

iComponent->XAxis[0]->TrackingStyle = iptsScrollSmooth;

iComponent->YAxis[0]->TrackingStyle = iptsScrollSmooth;

Contents | Index | Previous | Next