我在从servlet发送的JSP页面中使用JFreeChart。
但是我无法删除图表周围的灰色边框(见截图)。
jfreechart with border http://www.craenhals.eu/images/jfreechart.png
我该如何删除?
我使用以下代码在我的servlet中生成图表:
PiePlot plot = new PiePlot(dataset);
StandardPieSectionLabelGenerator labels = new StandardPieSectionLabelGenerator("{0} = {2}");
plot.setLabelGenerator(labels);
plot.setInteriorGap(0);
plot.setBackgroundPaint(Color.white);
plot.setBaseSectionOutlinePaint(Color.blue);
plot.setBaseSectionPaint(Color.green);
plot.setShadowPaint(Color.black);
plot.setShadowXOffset(0);
plot.setShadowYOffset(0);
plot.setOutlineVisible(false);
chart = new JFreeChart("", plot);
chart.setPadding(new RectangleInsets(0, 0, 0, 0));
chart.setBorderVisible(false);
chart.clearSubtitles();
我在这里缺少什么?我还在JSP中使用此代码来嵌入图像:
<img
src="<c:url value="/beheerder/statistieken?actie=chart_contactwijze"/>"
title="Contactwijze" border="0"/>
答案 0 :(得分:6)
plot.setOutlineVisible(假);
为我做了诀窍。
答案 1 :(得分:2)
plot.setShadowPaint(null)
这对我有用。
答案 2 :(得分:1)
灰色边框是图表的背景。
要更改它,只需添加以下行:chart.setBackgroundPaint(Color.white)