如何使用JFreeChart减少条形图中条形之间的间距

时间:2017-07-10 05:37:06

标签: java jfreechart

我正在使用JFreeChart并尝试将条形移动到BarChart中的其他条形区域。

我在Stack Overflow中经历了其他问题和答案,这是一个重复的问题,但在这里并不成功。

    JFreeChart chart = ChartFactory.createBarChart("Fund Transfer", "Transaction Results", "Summary Of Transaction", bardataset, PlotOrientation.VERTICAL, false, true, false);
    if(chart != null)
    {
        int width = 760;
        int height = 470;
        BarRenderer renderer = (BarRenderer) chart.getCategoryPlot().getRenderer();
        renderer.setMaximumBarWidth(0.03);
        final ChartRenderingInfo info = new ChartRenderingInfo(new StandardEntityCollection());
        response.setContentType("image/png");
        OutputStream out = response.getOutputStream();
        ChartUtilities.writeChartAsPNG(out, chart, width, height, info);
    }

目前我获得BarChart输出如下。 enter image description here

根据我上面的代码,我需要做些什么来减少空间b / w吧? AnyOne建议我。

0 个答案:

没有答案