58

I am using MPAndroidChart.

How can I remove the description from PieChart? I can remove the Legend with chart.setDrawLegend(false), but I couldn't find anything regarding the chart description in the documentation.

Philipp Jahoda
  • 50,880
  • 24
  • 180
  • 187
dbam
  • 1,088
  • 1
  • 13
  • 16

4 Answers4

187

Do you mean the description which is in the bottom right corner (default) of the Chart?

If so, simply call:

chart.getDescription().setEnabled(false);

Or did you mean the textual description inside the pie-slices?

pieChart.setDrawSliceText(false);

Or did you mean the actual slice values inside the pie-slices?

pieData.setDrawValues(false);

Or are you talking about the Legend (shows all DataSet labels and colors outside of the chart)?

chart.getLegend().setEnabled(false);

This answer is based on release v3.0.0+, for more information check out the documentation.

Philipp Jahoda
  • 50,880
  • 24
  • 180
  • 187
11

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);
milihoosh
  • 547
  • 5
  • 10
5

you can remove it by simply passing null into it.

pieChart.setDescription(null);

Community
  • 1
  • 1
Rahul Singh
  • 320
  • 4
  • 7
5

in kotlin use

chart.description.isEnabled = false
Nithish
  • 5,393
  • 2
  • 9
  • 24