核心功能:
1. Gradle dependency (recommended)
build.gradle
:
allprojects {
repositories {
maven { url "https://jitpack.io" }
}
}
build.gradle
:
dependencies {
compile 'com.github.PhilJay:MPAndroidChart:v3.0.1'
}
2. Maven
Add the following to the <repositories>
section of your pom.xml
:
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
Add the following to the <dependencies>
section of your pom.xml
:
<dependency>
<groupId>com.github.PhilJay</groupId>
<artifactId>MPAndroidChart</artifactId>
<version>v3.0.1</version>
</dependency>
线型图(有传说,简单的设计)
线型图(立方行)
线型图(渐变填充)
联合图表(酒吧,以及线型图在这种情况下)
BARCHART(有传说,简单的设计)
热门源码