如何使graphview背景完全空白,甚至不显示x轴和y轴。
在网路上找不到任何东西

android - 如何在没有背景的GraphView中绘制图表?-LMLPHP

最佳答案

I got my solution by adding these lines

mygraphview.getGridLabelRenderer().setGridStyle(GridLabelRenderer.GridStyle.NONE);// It will remove the background grids

 mygraphview.getGridLabelRenderer().setHorizontalLabelsVisible(false);// remove horizontal x labels and line
  mygraphview.getGridLabelRenderer().setVerticalLabelsVisible(false);
// remove vertical labels and lines

09-13 05:37