OverlaidXYPlotDemo1:更改系列颜色

时间:2012-10-25 11:25:23

标签: java jfreechart

我已设法更改the OverlaidXYPlotDemo1中条形的颜色,其中包含:

XYItemRenderer xir = plot.getRenderer();
xir.setSeriesPaint(0, Color.BLUE);

但是,我无法用

更改第二个系列的颜色
xir.setSeriesPaint(1, Color.GREY);

所以我可能错过了一些东西。任何提示?

1 个答案:

答案 0 :(得分:1)

我明白了。正确的方法是使用渲染器:

renderer1.setSeriesPaint(0, Color.YELLOW);
renderer2.setSeriesPaint(0, Color.GREY);