Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to implement horizontal rating bar chart in android studio?

how to get this type of graph?

I want to design and implement a horizontal rating bar chart in my app like the image below.
I followed several tutorials, but I'm not able to get a proper solution.
rate bar chart

Please suggest links or code.

like image 967
pb123 Avatar asked Jul 29 '16 12:07

pb123


1 Answers

Use this library https://github.com/PhilJay/MPAndroidChart

Add this to your app build.gradle:

dependencies {
    compile 'com.github.PhilJay:MPAndroidChart:v3.0.0-beta1'
}

enter image description here

like image 58
Amit Vaghela Avatar answered Sep 18 '22 22:09

Amit Vaghela