jfreechart 线图 xy轴整数显示

XYPlot plotxy =  chart.getXYPlot();  
        NumberAxis na= (NumberAxis)plotxy.getDomainAxis();//x轴整数显示
       //NumberAxis na= (NumberAxis)plotxy.getRangeAxis();//y轴整数显示

        na.setStandardTickUnits(NumberAxis.createIntegerTickUnits()); 
以上用于线图

CategoryPlot plotBar =  chart.getCategoryPlot();  
NumberAxis na= (NumberAxis)plotBar.getRangeAxis();  
na.setStandardTickUnits(NumberAxis.createIntegerTickUnits());  
这个可以用于饼状图。

你可能感兴趣的:(jfreechart)