TiScaleComponent.AutoScaleStyle

TiScaleComponent See Also

Specifies the style for adjusting the PositionMin & PositionMax when AutoScale is enabled.

type TiAutoScaleStyle = (iassAutoMinMax, iassFixedMinMax);

property AutoScaleStyle : TiAutoScaleStyle;

Description

Use AutoScaleStyle to specify the style for adjusting the PositionMin & PositionMax when AutoScale is enabled.

These are the possible values:

Value
Meaning
iassAutoMinMax
PositionMin & PositionMax are adjusted so that the scale starts and stops on a major tick
iassFixedMinMax
PositionMin & PositionMax remain fixed and the scale may not start or stop on a major tick

Example

Delphi

iComponent.AutoScaleStyle := iassAutoMinMax;

C++ Builder

iComponent->AutoScaleStyle = iassAutoMinMax;

Contents | Index | Previous | Next