LOGGER.debug("hUpper = " + hUpper);
LOGGER.debug("vLower = " + vLower);
LOGGER.debug("vUpper = " + vUpper);
Plot p = this.chart.getPlot();
if (p instanceof ValueAxisPlot) {
ValueAxisPlot plot = (ValueAxisPlot) p;
plot.zoomHorizontalAxes(hLower, hUpper);
plot.zoomVerticalAxes(vLower, vUpper);
}
}
}