Package net.sourceforge.ganttproject.chart

Examples of net.sourceforge.ganttproject.chart.RenderedChartImage


    /** Return an image with the gantt chart */
    // TODO: 1.11 take into account flags "render this and don't render that"

    public BufferedImage getChart(GanttExportSettings settings) {
      RenderedChartImage renderedImage = (RenderedChartImage) getRenderedImage(settings);
      BufferedImage result = renderedImage.getWholeImage();
        repaint();
        return result;
    }
View Full Code Here


//    public int getScrollBar() {
//        return margY;
//    }

    public BufferedImage getChart(GanttExportSettings settings) {
        RenderedChartImage renderedImage = (RenderedChartImage) getRenderedImage(settings);
        BufferedImage result = renderedImage.getWholeImage();
        repaint();
        return result;
    }
View Full Code Here

TOP

Related Classes of net.sourceforge.ganttproject.chart.RenderedChartImage

Copyright © 2018 www.massapicom. 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.