How to implement horizontal rating bar chart in android studio?

pb123 picture pb123 · Jul 29, 2016 · Viewed 13.8k times · Source

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.

Answer

Amit Vaghela picture Amit Vaghela · Jul 29, 2016

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