Search found 3 matches

by ksevern
Fri Aug 29, 2003 7:51 pm
Forum: JFreeChart
Topic: Remove text on Pie3DChart
Replies: 2
Views: 5670

Found it

I found a way to do this. The method name is misleading. So I had trouble finding this as well. See the segments below:

JFreeChart chart = ChartFactory.createPie3DChart(...);
...
Pie3DPlot plot = (Pie3DPlot) chart.getPlot();
...
plot.setSectionLabelType(PiePlot.NO_LABELS)
;
...
by ksevern
Fri Aug 29, 2003 7:43 pm
Forum: JFreeChart
Topic: How to you remove all chart margins?
Replies: 2
Views: 4358

Seems like there is more there.

Thanks for the reply!. That makes sence. I can deal with the half category gap because it should move toward 0 as the number of categories increases. However, I've added 20 data points to the image below and it seems that there is still extra space on the edges. Is there a way to remove that extra g...
by ksevern
Wed Aug 27, 2003 8:06 pm
Forum: JFreeChart
Topic: How to you remove all chart margins?
Replies: 2
Views: 4358

How to you remove all chart margins?

I'd like to know how to remove all the chart margins. I've had some success getting rid of most of them (see the code below) but need help removing the spaces indicated in this image http://simplybest.com/ksevern/images/JFreeChartLine.jpg Please help. Thanks, Ken Code Segment: ______________________...