Is there any way to remove the single pixel border around a pie chart in JFreeChart?
Thx.
Laurence
Border on Pie Charts
Re: Border on Pie Charts
Try this (I think it will work):
Plot myPlot = myChart.getPlot();
myPlot.setOutlinePaint(null);
Regards,
DG.
Plot myPlot = myChart.getPlot();
myPlot.setOutlinePaint(null);
Regards,
DG.