ZoomOut(OriginalPosition: Boolean);
OriginalPosition. Indicates whether the axis is returned to the original state.
The ZoomOut method determines zooming out a previously zoomed in section and resetting the axis to initial state.
If the property is set to True, an axis is zoomed out and reset to initial state. If the property is set to False, nothing happens.
This example assumes that there is the ChartAxis object of the IChartAxis type.
Sub ZoomOut;
Var
ChartAxis : IChartAxis;
Begin
ChartAxis.ZoomOut(True);
End Sub ZoomOut;
After executing the example the axis is reset to initial scale.
See also: