jfreechart 去除灰色背景
JFreeChart chart = ChartFactory.createPieChart3D("", dataset, false, false, false);// 设置外层图片 无边框 无背景色 背景图片透明chart.setBorderVisible(false);chart.setBackgroundPaint(null);chart.setBackgroundImageAlpha(0.0f);PiePlot3D plot = (PiePlot3D) chart.getPlot();// 饼图的0°起点在3点钟方向,设置为180°是从左边开始计算旋转角度plot.setStartAngle(180);// 扇形的旋转方向plot.setDirection(Rotation.CLOCKWISE);// 饼图上 无标签提示plot.setLabelGenerator(null);// 饼图的透明度plot.setForegroundAlpha(0.5f);// 饼图的背景全透明plot.setBackgroundAlpha(0.0f);// 去除背景边框线plot.setOutlinePaint(null);
?
jfreechart 最终显示的报表是由多层图片叠加的。所以去除灰色的关键就是,把饼层的背景设置为全透明。个人理解:饼层和背景构成了饼图,饼图加背景构成了饼图报表。
?