PlotOrientation orient = getOrientation();
if (orient == PlotOrientation.HORIZONTAL) {
for (int i = 0; i < this.rangeAxes.size(); i++) {
ValueAxis rangeAxis = (ValueAxis) this.rangeAxes.get(i);
if (rangeAxis != null) {
rangeAxis.resizeRange(factor);
}
}
}
else if (orient == PlotOrientation.VERTICAL) {
for (int i = 0; i < this.domainAxes.size(); i++) {