Reputation: 21
I am using the Charts library by Daniel Gindi. I am able to set my delegate and have a function run whenever a slice is selected, but the line pieChartDataSet.sliceSpace sets the spacing for the entire chart instead of just one slice.
Here is an example of what I want to achieve:
Thanks for your help.
Upvotes: 1
Views: 1217
Reputation: 9754
This pieChartDataSet.sliceSpace
is for highlight feature, and you just have to write code to highlight the slice you want.
Take a look at drawHighlighted()
in pie chart renderer.
Upvotes: 0