我正在 servlet 中创建一个图表,效果很好。
chart = ChartFactory.createPieChart("Smart Chart", ds, true, true,
true);
PiePlot plot = (PiePlot) chart.getPlot();
ImageIcon icon = new ImageIcon(bgImageStr);
plot.setBackgroundPaint(Color.CYAN);
plot.setBackgroundAlpha(0.15f);
chart.setBackgroundPaint(Color.WHITE);
chart.getTitle().setBackgroundPaint(Color.PINK);
chart.setBackgroundImage(icon.getImage());
问题是,背景图像没有显示出来。我试过情节和图表背景,以及其他各种东西。一定很简单,有谁看到有什么问题吗?我只是使用对 PNG 的写入将其转储到浏览器。它显示得很好,所有颜色都发生了变化,只是没有图像。