IAxis.Scroll
IAxis
procedure Scroll(Offset: Double; CheckLimits: WordBool);
Type Library
TeeChartx
Description
This method will "scroll" or displace the Axis Maximum and Minimum values by the Offset parameter. If you want to scroll the Axis outside Series limits, CheckLimits must be False.
Example [Visual Basic]:
Scrolls 150 points on clicking the Chart
Private Sub TChart1_OnClick()
TChart1.Axis.Bottom.Scroll 150, False
End Sub