1

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

MSpeed
  • 7,914
  • 6
  • 46
  • 57

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
  • 200,320
  • 28
  • 229
  • 974
  • 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