android - Creating Pie chart / progressbar like arc in andorid -
i working on project want show pie chart image added. have searched google , other posts in stackoverflow, not find solution. solution appreciated.
note: suggestions of third-party library welcome. please not suggest mpandroidchart think query can implemented using simpler method.
you can use library https://github.com/philjay/mpandroidchart achieve this.
add below in xml:
<com.github.mikephil.charting.charts.piechart android:id="@+id/chart" android:layout_width="match_parent" android:layout_height="match_parent" />
in java code:
piechart chart = (piechart) findviewbyid(r.id.chart);
example code:
there lot of variances available.
another library consider is:
Comments
Post a Comment