删除 AndroidPlot 下面的 Space

Remove Space below AndroidPlot

我在寻找删除 AndroidPlot 下方 space 的解决方案时发现了以下 post。

How do I remove all space around a chart in AndroidPlot?

Widget gw = mPlot.getGraph();    
    Size size = new Size(0,SizeMode.FILL,0,SizeMode.FILL);    
    gw.setSize(size);
    gw.position(0, HorizontalPositioning.ABSOLUTE_FROM_LEFT,0, VerticalPositioning.ABSOLUTE_FROM_TOP);

我不确定这个解决方案是否仍然有效,或者该解决方案是否不再有效,或者我只是在实施它时犯了一个错误。

一张图更清楚:

感谢您的帮助,

弗兰齐

比我想象的要简单。

我通过添加以下代码解决了这个问题:

mPlot.getGraph().setMarginBottom(0);