I am using MPAndroidChart.
How can I remove the description from PieChart? I can remove the Legend with chart.setDrawLegend(false)
PieChart
Legend
chart.setDrawLegend(false)
In the new version you can do it like this:
Description des = Chart.getDescription(); des.setEnabled(false);
If you want to remove the legend:
Legend leg = Chart.getLegend(); leg.setEnabled(false);