Examples of zoomVerticalAxes()


Examples of org.jfree.chart.plot.ValueAxisPlot.zoomVerticalAxes()

     */
    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).
View Full Code Here

Examples of org.jfree.chart.plot.ValueAxisPlot.zoomVerticalAxes()

     */
    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.
View Full Code Here

Examples of org.jfree.chart.plot.ValueAxisPlot.zoomVerticalAxes()

            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);
            }

        }

    }
View Full Code Here

Examples of org.jfree.chart.plot.ValueAxisPlot.zoomVerticalAxes()

     */
    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
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.