A simple charting library for Android, supporting line-, bar-, scatter-, candlestick-, pie- and radarcharts (spider web), as well as scaling, dragging, selecting and animations. Supporting Android 2.2 (API level 8) and upwards.
Remember: It's all about the looks.
The experimental branch might contain new features that are still buggy. It is recommended to be safe and only make use of the code on the master branch.
Forks, pull-requests or any other forms of contribution are always welcome.
If you would like to support this project's further development, the creator of this project or the continuous maintenance of this project, feel free to donate. Your donation is highly appreciated.
PayPal
Gittip
For a brief overview of the most important features, please download the PlayStore Demo MPAndroidChart Example.apk and try it out. The corresponding code for the demo-application is also included in this repository inside the MPChartExample folder.
If you are having questions or problems, feel free to contact me. Since I would very much like that other users of this library can also benefit from your question, I am asking you to contact me via e-mail only as a last option. Instead, you should:
mpandroidchart
tagYou can let me know via e-mail that you have opened a stackoverflow question so that I might get to answering it more quickly. Thank you.
Core features:
Chart types:
LineChart (with legend, simple design)
LineChart (with legend, simple design)
LineChart (cubic lines)
LineChart (single DataSet)
BarChart2D (with legend, simple design)
In order to use the library, there are 4 options:
1. Gradle dependency
build.gradle
:repositories { maven { url "https://jitpack.io" } } dependencies { compile 'com.github.PhilJay:MPAndroidChart:v2.0.4' }
2. Maven
pom.xml
:<repository> <id>jitpack.io</id> <url>https://jitpack.io</url> </repository> <dependency> <groupId>com.github.PhilJay</groupId> <artifactId>MPAndroidChart</artifactId> <version>v2.0.4</version> </dependency>
3. jar file only
libs
folder of your Android application project4. clone whole repository
git clone https://github.com/PhilJay/MPAndroidChart.git
to download the full MPAndroidChart repository to your computer (this includes the folder of the library project as well as the example project)MPChartLib
) into your Eclipse workspaceFor a detailed documentation, please have a look at the Wiki.
Furthermore, you can also rely on the MPChartExample folder and check out the example code in that project. The corresponding application to the example project is also available in the Google PlayStore.
You have a problem that cannot be solved by having a look at the example project and documentation? No problem, let's talk:
Copyright 2014 Philipp Jahoda
Licensed under the Apache License, Version 2.0 (the “License”); you may not use this file except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an “AS IS” BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
Special thanks to mikegr and ph1lb4 for their contributions to this project.