TMS Chart zoom out

TMS VCL Chart: 4.2.2.0
OS: Win7
Delphi 7 Pro Sp1 (8.1)

Good day TMS team, It is not clear how should user "zoom out". I could zoom in in the Demos\OverviewDemo.dpr with ctrl+ lmb mouse rectangle.
But have no clue to zoom out, with no code.

There is no property to zoom out, we'll investigate the possibilities. To reset the zoom, please use the following code:

AdvChartView1.BeginUpdate;
AdvChartView1.Panes[0].Series.Mode := cmInit; //original scale
AdvChartView1.SetPanesRange(0, 5); //original range
AdvChartView1.EndUpdate;