I need a pie-chart like shown below
I have searched a lot but most similar case I can find was this.
Any ideas...?
I need a pie-chart like shown below
I have searched a lot but most similar case I can find was this.
Any ideas...?
Use Can try this...
Pi Chart
You can follow This link....
<view
android:layout_width="300dp"
android:layout_height="wrap_content"
class="im.dacer.androidcharts.PieView"
android:id="@+id/pie_view" />
PieView pieView = (PieView)findViewById(R.id.pie_view);
ArrayList<PieHelper> pieHelperArrayList = new ArrayList<PieHelper>();
pieView.setDate(pieHelperArrayList);
pieView.selectedPie(2); //optional
pieView.setOnPieClickListener(listener) //optional
pieView.showPercentLabel(false); //optional
Also you can follow this Example Follow this Answer Links