I do not see the method setSeriesPaint(Paints[]) in the XYPlot class anymore. Is there another way to set the Series paints?
Thanks,
Jamey
XYPlot.setSeriesPaint(Paints[])
Re: XYPlot.setSeriesPaint(Paints[])
Yes, you have to do it this way :
XYPlot plot = chart.getXYPlot();
plot.getRenderer().setSeriesPaint( int series, Paint paint );
series are index from 0
Regards
Morpheus
XYPlot plot = chart.getXYPlot();
plot.getRenderer().setSeriesPaint( int series, Paint paint );
series are index from 0
Regards
Morpheus