Any ideas? There is no setRadiusLabelsVisible(...)
or setLabelGenerator(null)
method which exists for at least some of the other charts. :)
1 に答える
2
PolarPlot
ラジアルがあるように見えるAxis
ので、
PolarPlot plot = (PolarPlot) chart.getPlot();
ValueAxis axis = plot.getAxis();
axis.setTickLabelsVisible(false);
于 2010-03-12T04:48:15.843 に答える