MSpeed
MSpeed

Reputation: 8290

JFreeChart PolarPlot remove radius labels?

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

Upvotes: 1

Views: 767

Answers (1)

trashgod
trashgod

Reputation: 205865

It looks like a PolarPlot has a radial Axis, so

PolarPlot plot = (PolarPlot) chart.getPlot();
ValueAxis axis = plot.getAxis();
axis.setTickLabelsVisible(false);

Upvotes: 2

Related Questions