TiPlotAxis.ScrollMinMaxEnabled

TiPlotAxis

Specifies whether scrolling of the axis is fixed to a range of values.

property ScrollMinMaxEnabled : Boolean;

Description

Use ScrollMinMaxEnabled to specify whether scrolling of the axis is fixed to a range of values specified by ScrollMax and ScrollMin. If this property is set to TRUE, then the axis will stop scrolling when ScrollMax and/or ScrollMin are reached on the scale.

Example

Delphi

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

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

C++ Builder

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

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

Contents | Index | Previous | Next