有时候Y坐标的文字会漏掉一部分,可能是因为文字较长,而图片宽度太小,出来的图片就会漏掉部分记录。将图片宽度设大就可以了。 filename = ServletUtilities.saveChartAsPNG(chart, 700, height, info, session); CategoryAxis domainAxis = plot.getDomainAxis(); //设置Y轴属性ValueAxis rangeAxis = plot.getRangeAxis(); //设置X轴属性rangeAxis.setTickLabelFont(new Font("Serif", Font.PLAIN, 12));domainAxis.setTickLabelFont(new Font("Serif", Font.PLAIN, 14));plot.setRangeAxis(rangeAxis);plot.setDomainAxis(domainAxis);