Border on Pie Charts

A discussion forum for JFreeChart (a 2D chart library for the Java platform).
Locked
Laurence Moroney

Border on Pie Charts

Post by Laurence Moroney » Tue Jul 23, 2002 3:13 pm

Is there any way to remove the single pixel border around a pie chart in JFreeChart?

Thx.

Laurence

David Gilbert

Re: Border on Pie Charts

Post by David Gilbert » Tue Jul 23, 2002 4:12 pm

Try this (I think it will work):

Plot myPlot = myChart.getPlot();
myPlot.setOutlinePaint(null);

Regards,

DG.

Locked