Charts: Hide labels - Pie chart

Created on 23 Feb 2017  ·  3Comments  ·  Source: danielgindi/Charts

It's probably easy, but I can't figure out how to hide the labels in the pie chart (PieChartView):

screen shot 2017-02-23 at 14 20 45

Most helpful comment

self.pieChartView.drawSliceTextEnabled = NO;
dataSet.drawValuesEnabled = NO

All 3 comments

I believe it's drawEntryLabelsEnabled and set it to false.

self.pieChartView.drawSliceTextEnabled = NO;
dataSet.drawValuesEnabled = NO

you have to set dataSet.drawValuesEnabled to false, only setting drawEntryLabelsEnabled to false doesn't work.

Was this page helpful?
0 / 5 - 0 ratings

Related issues

coop44483 picture coop44483  ·  3Comments

guoyutaog picture guoyutaog  ·  3Comments

ahmedsafadii picture ahmedsafadii  ·  3Comments

brytnvmg picture brytnvmg  ·  4Comments

cilasgimenez picture cilasgimenez  ·  4Comments