1

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

MSpeed
  • 8,153
  • 7
  • 49
  • 61

1 Answers1

2

It looks like a PolarPlot has a radial Axis, so

PolarPlot plot = (PolarPlot) chart.getPlot();
ValueAxis axis = plot.getAxis();
axis.setTickLabelsVisible(false);
trashgod
  • 203,806
  • 29
  • 246
  • 1,045
  • 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 – MSpeed Mar 12 '10 at 18:15