ZoomOut(OriginalPosition: Boolean);
OriginalPosition. Indicates whether the axis is returned to the initial 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, the 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 state.
See also: