jfreechar开发(一)-------如何去掉坐标轴的标尺栏?

1.前言。
   标尺栏和坐标轴的刻度如果有两条,非常难看,如何去掉呢?直接调用setAxisOffset方法即可。
2.例子。
   CategoryPlot plot = chart.getCategoryPlot();
   plot.setAxisOffset(new RectangleInsets(0, 0, 0, 0));
3.具体的jfreechart的API,请看我的一篇转载.
   http://nannan408.iteye.com/blog/1942643 .

你可能感兴趣的:(char)