我已设法更改the OverlaidXYPlotDemo1中条形的颜色,其中包含:
XYItemRenderer xir = plot.getRenderer();
xir.setSeriesPaint(0, Color.BLUE);
但是,我无法用
更改第二个系列的颜色xir.setSeriesPaint(1, Color.GREY);
所以我可能错过了一些东西。任何提示?
答案 0 :(得分:1)
我明白了。正确的方法是使用渲染器:
renderer1.setSeriesPaint(0, Color.YELLOW);
renderer2.setSeriesPaint(0, Color.GREY);