TiPlotAxis.ScrollMax

TiPlotAxis

Specifies a fixed maximum limit on scrolling of the axis .

property ScrollMax : Double;

Description

Use ScrollMax to set a fixed maximum limit on scrolling of the axis. If the user attempts to scroll the axis past this point on the axis and ScrollMinMaxEnabled is set to TRUE, the axis will not scroll past the specified maximum point.

Example

Delphi

iComponent.XAxis[0].ScrollMax := 100;

iComponent.YAxis[0].ScrollMax := 100;

C++ Builder

iComponent->XAxis[0]->ScrollMax = 100;

iComponent->YAxis[0]->ScrollMax = 100;

Contents | Index | Previous | Next