15021503150415051506150715081509151015111512
*/ public void zoomInVertical(double y) { Plot p = this.chart.getPlot(); if (p instanceof ValueAxisPlot) { ValueAxisPlot plot = (ValueAxisPlot) p; plot.zoomVerticalAxes(this.zoomInFactor); } } /** * Zooms out on an anchor point (measured in Java2D coordinates).
15441545154615471548154915501551155215531554
*/ public void zoomOutVertical(double y) { Plot p = this.chart.getPlot(); if (p instanceof ValueAxisPlot) { ValueAxisPlot plot = (ValueAxisPlot) p; plot.zoomVerticalAxes(this.zoomOutFactor); } } /** * Zooms in on a selected region.
15761577157815791580158115821583158415851586
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); } } }
16091610161116121613161416151616161716181619
*/ public void autoRangeVertical() { Plot p = this.chart.getPlot(); if (p instanceof ValueAxisPlot) { ValueAxisPlot plot = (ValueAxisPlot) p; plot.zoomVerticalAxes(0.0); } } /** * Returns the data area for the chart (the area inside the axes) with the