Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Semi Circle Pie Chart in Android Application

Tags:

android

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..

like image 578
Saket89 Avatar asked Nov 16 '15 05:11

Saket89


2 Answers

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

like image 70
sud Avatar answered Nov 19 '22 18:11

sud


The following mentioned library will do your task

https://github.com/PhilJay/MPAndroidChart

also go through

http://androidplot.com/

like image 36
Harry Sharma Avatar answered Nov 19 '22 17:11

Harry Sharma