我正在使用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);
}
根据我上面的代码,我需要做些什么来减少空间b / w吧? AnyOne建议我。