Hellocharts 怎么设置缩放比例、 缩放级别

假如数据多了,它就比较密如图, 图片说明
像这种怎么设置啊,Hellocharts-android有没有这样的属性 !
如下图,就正好了,
图片说明
求大神?????

还得靠自己,解决了,chart.setZoomLevel(x, y, zoomLevel); 这个不好使,不符合我的需求,也能是我不会用;
我用的是 Viewport tempViewport = new Viewport(0, chart.getMaximumViewport().height(), 9, 0) ;
chart.setCurrentViewport(tempViewport);//setCurrentViewport(tempViewport1, false);
即:

new Viewport(float left, float top, float right, float bottom)
left:0//X轴为0
top: chart.getMaximumViewport()//Y轴的最大值

right: 9//X轴显示9列
bottom:0//Y轴为0
如图
图片说明

Nice ! 遇到同样的问题,用了你的方法解决了,Thank you!