How to hide legends and axis in MPAndroidChart?

前端 未结 7 674
栀梦
栀梦 2020-12-13 11:54

Is their any possibility to hide all rounded items from this picture.

\"enter

7条回答
  •  庸人自扰
    2020-12-13 12:40

    chart=(LineChart) findViewById(R.id.Chart);
    chart.getLegend().setEnabled(false); // for hiding square on below graph
    

提交回复
热议问题