Saket89
Saket89

Reputation: 261

Semi Circle Pie Chart in Android Application

Can anyone please help me out with creating a semi circle pie chart in an android application or is there any library that I can implement to render a semi circle pie chart similar to the attached image..

Upvotes: 7

Views: 6353

Answers (2)

Harry Sharma
Harry Sharma

Reputation: 2200

The following mentioned library will do your task

https://github.com/PhilJay/MPAndroidChart

also go through

http://androidplot.com/

Upvotes: 2

sud
sud

Reputation: 505

edit in this link MagicPie Its a third library that works with Core Animation.

Changing the properties 'startAngle' and 'endAngle' of the the property 'PieLayer' in the UIView where the Pies are drawn.

self.layer.startAngle = 0;
self.layer.endAngle = 180;

refer linkhere

Upvotes: 2

Related Questions