Quelqu'un pourrait me donner un exemple de code pour affecter des couleurs à un camemberts PieChart3D avec la librairie JFreeChart??
Version imprimable
Quelqu'un pourrait me donner un exemple de code pour affecter des couleurs à un camemberts PieChart3D avec la librairie JFreeChart??
bon j'ai trouvé!! pour la culture:
Code:
1
2
3
4
5
6 PiePlot3D plot = (PiePlot3D) chart.getPlot(); plot.setSectionPaint(0, Color.LIGHT_GRAY); plot.setSectionPaint(1, Color.GREEN); plot.setSectionPaint(2, Color.BLUE); plot.setSectionPaint(3, Color.YELLOW);