JFreeChart如何直接在x轴上打印散点图?

时间:2012-01-05 01:37:58

标签: jfreechart scatter-plot scatter

我尝试制作散点图,但数据点并不完全位于(2,0)坐标,只是部分可见。 该图显示了JFreeChart生成的输出:

http://i.stack.imgur.com/oGpZW.png

但它应该是这样的(用GIMP制作):

http://i.stack.imgur.com/dqrnh.jpg

有人知道怎么做吗?

感谢您的帮助!!!

1 个答案:

答案 0 :(得分:1)

对于其他任何人来说,这是解决方案,它完全不能让我满意但是可以接受:

http://i.stack.imgur.com/70TbB.png

有趣的代码行是:

plot.setAxisOffset(new RectangleInsets(0, 0, 0, 0));
plot.getRangeAxis().setLowerMargin(0);