1

I need a pie-chart like shown below

enter image description here

I have searched a lot but most similar case I can find was this.

enter image description here

Any ideas...?

Atula
  • 2,177
  • 2
  • 12
  • 28

1 Answers1

2

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

enter image description here

Also you can follow this Example Follow this Answer Links

Community
  • 1
  • 1
Arjun saini
  • 4,223
  • 3
  • 23
  • 51