Android - 如何在Android中显示BarGraph

时间:2016-02-06 08:02:45

标签: android xml android-layout android-studio graph

是否可以在android?中显示Bar Graph,就像使用Bar Graph显示两组数据一样。 这有什么图书馆吗?希望你能帮助我,谢谢

1 个答案:

答案 0 :(得分:3)

  

可以在android中显示条形图吗?

是的,这是可能的。

  

比如使用条形图显示两组数据。有没有   这个库?

是的,使用MPAndroidChart库进行条形图。

检查MPAndroidChart.

的链接

您可以生成BarGraph,如下图所示

enter image description here

enter image description here

如何在Android Studio中使用此库:

将以下内容添加到build.gradle:

repositories {
    maven { url "https://jitpack.io" }
}

dependencies {
    compile 'com.github.PhilJay:MPAndroidChart:v2.2.0'
}