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

cilasgimenez picture cilasgimenez  路  4Comments

heumn picture heumn  路  3Comments

anhltse03448 picture anhltse03448  路  3Comments

kirti0525 picture kirti0525  路  3Comments

BrandonShega picture BrandonShega  路  4Comments