JFreeChart PolarPlot X轴

时间:2015-12-14 00:47:35

标签: java plot charts jfreechart polar-coordinates

我遇到了问题。 X轴有问题。零不在图表的中间。图表一切都很好,但数字轴签名不正确。我是java和jFreeChart的新手。

现在,它看起来像这样: enter image description here

但是,它看起来应该是这样的: enter image description here

如何改变?包含问题的部分代码如下:

private static JFreeChart createChart(XYDataset dataset) {
    NumberAxis numberAxis = new NumberAxis();
    numberAxis.setTickLabelsVisible(false);

    DefaultPolarItemRenderer renderer = new DefaultPolarItemRenderer();
    renderer.setShapesVisible(false);

    PolarPlot plot = new PolarPlot(dataset, numberAxis, renderer);
    plot.setCounterClockwise(true);
    plot.setAxisLocation(PolarAxisLocation.EAST_BELOW);
    plot.setAngleOffset(0);

    JFreeChart chart = new JFreeChart(title, JFreeChart.DEFAULT_TITLE_FONT, plot, true);
    return chart;
}

0 个答案:

没有答案