How to hide legends and axis in MPAndroidChart?

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

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

\"enter

7条回答
  •  悲哀的现实
    2020-12-13 12:44

    It appears mChart.SetDescription() no longer accepts a String.

    The method now accepts an instance of the Description Class like this: mChart.setDescription(Description description)

    So to modify or delete the Chart Description you may do it like below

    Description description = new Description();
    description.setText("");
    mChart.setDescription(description);
    

提交回复
热议问题