Question

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

Was it helpful?

Solution

It looks like a PolarPlot has a radial Axis, so

PolarPlot plot = (PolarPlot) chart.getPlot();
ValueAxis axis = plot.getAxis();
axis.setTickLabelsVisible(false);
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top