Simple Material You(3) style Android line chart library. Inspired by Google Finance widget.
- Material 3 style & color override
- Color customization for small section of line graph
- On long-touch label
- Guideline
- Dynamic Axis tick change
- Various data types
- Other data in X axis
- Scroll or Zoom
- Clone our repo
- Checkout to
main
branch - Build the app
In your app build gradle:
implementation("app.priceguard:materialchart:0.2.3")
Make sure that you have maven central added to the repositories.
repositories {
mavenCentral()
}
Just add a submodule to your repo where the module should be by using:
git submodule add -b lib-latest https://github.com/Taewan-P/material-android-chart <your_module_folder_location>
The lib-latest branch is a subtree of the main
branch's materialchart module folder, which only contains the data that you need for other projects.
Adding a submodule that tracks the release branch is all you need.