我正在使用MPAndroidChart(https://github.com/PhilJay/MPAndroidChart )在我的应用中。我想要的是像这样的精确外观图 Graph Design 1
没有。图片(图形设计2)中的建议:
我的图最后应该是弯曲的。我知道可以通过增加其长度使其大于包含布局的长度并使隐藏的布局溢出(例如在CSS中)来实现。但是我无法弄清楚如何使用android中的MPAndroidChart做到这一点。
X轴和Y轴的值在图形内部大约为20dp,但我无法实现。
MainActivity.java
YAxis leftAxis;
leftAxis.setYOffset(-30f);//it does the trick of aligning the y axis values
//inwards
leftAxis.setYOffset(20f); //However, shifts the vales to upper grids giving
//wrong values. Same with the X axis, only
xl.setOffset(-36f); //works.
这是我的代码https://github.com/sharmanirudh/Beautiful-Graph-Library
感谢您的帮助。