Reputation: 8290
Any ideas? There is no setRadiusLabelsVisible(...) or setLabelGenerator(null) method which exists for at least some of the other charts. :)
setRadiusLabelsVisible(...)
setLabelGenerator(null)
Upvotes: 1
Views: 767
Reputation: 205865
It looks like a PolarPlot has a radial Axis, so
PolarPlot
Axis
PolarPlot plot = (PolarPlot) chart.getPlot(); ValueAxis axis = plot.getAxis(); axis.setTickLabelsVisible(false);
Upvotes: 2