Dispaces Axis Minimum and Maximum values.
public Void Scroll(Double offset,
Boolean checkLimits)

Remarks


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


Scrolls 150 points on clicking the Chart

[C#]

private void button1_Click_1(object sender, System.EventArgs e) 
{
     tChart1.Axes.Bottom.Scroll(150,false);
}


See Also

Axis Class | Axis Members | Steema.TeeChart Namespace