TiPlotAxis.ScrollMin
TiPlotAxis
Specifies a fixed minimum limit on scrolling of the axis.
property ScrollMin : Double;
Description
Use ScrollMin 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].ScrollMin := 0;
iComponent.YAxis[0].ScrollMin := 0;
C++ Builder
iComponent->XAxis[0]->ScrollMin = 0;
iComponent->YAxis[0]->ScrollMin = 0;
Contents | Index | Previous | Next