views:

106

answers:

1

Any ideas? There is no setRadiusLabelsVisible(...) or setLabelGenerator(null) method which exists for at least some of the other charts. :)

+1  A: 

It looks like a PolarPlot has a radial Axis, so

PolarPlot plot = (PolarPlot) chart.getPlot();
ValueAxis axis = plot.getAxis();
axis.setTickLabelsVisible(false);
trashgod
It worked, thanks a lot :)
billynomates
Hey, since you seem to know a lot about this, could you please take a look at my other question? That would be awesome. Cheers!http://stackoverflow.com/questions/2433980/plot-points-instead-of-lines-jfreechart-polarchart
billynomates