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

dtogias picture dtogias  路  23Comments

zykis picture zykis  路  21Comments

ghost picture ghost  路  59Comments

lewissk picture lewissk  路  26Comments

slzrafael picture slzrafael  路  21Comments