不同的间隔ValueAxis与JFreechart

时间:2012-10-06 21:25:02

标签: jfreechart

我正在尝试使用不同的间隔进行ValueAxis。我的意思是,例如,我想用valueAxis做一个jfrechart,我只能看到数字1,5,7。我已尝试使用下一个代码,但我得到一个带有一个修复间隔的valueAxis。

    CategoryPlot categoryplot = (CategoryPlot) jfreechart.getPlot();
    ValueAxis valueaxis = categoryplot.getRangeAxis();

    TickUnits units = new TickUnits();
    units.add(new NumberTickUnit(1));
    units.add(new NumberTickUnit(5));
    units.add(new NumberTickUnit(7));
   valueaxis.setStandardTickUnits(units);

有谁知道我该怎么办?感谢。

0 个答案:

没有答案