Any ideas? There is no setRadiusLabelsVisible(...)
or setLabelGenerator(null)
method which exists for at least some of the other charts. :)
views:
106answers:
1
+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
2010-03-12 04:48:15
It worked, thanks a lot :)
billynomates
2010-03-12 13:41:06
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
2010-03-12 18:15:25