SimpleAndroidBarChart

Additional

Language
Kotlin
Version
1.0.1 (Dec 21, 2020)
Created
Dec 18, 2020
Updated
Nov 4, 2022
Owner
BoyzDroizy
Contributors
Candrea Eusebiu (EusebiuCandrea)
BoyzDroizy
2
Activity
Badge
Generate
Download
Source code

SimpleAndroidBarChart


???? SimpleAndroidBarChart is an Open Source Android library, that allows you to display a proposal of barchart. This is a simple example, for more customizations, you can download source code and custom it for your requirements.



YouTube video

Including in your project

Gradle

Add below codes to your root build.gradle file.

allprojects {
  repositories {
   ...
   maven { url 'https://jitpack.io' }
  }
 }

And add a dependency code to your module's build.gradle file.

 dependencies {
         implementation 'com.github.BoyzDroizy:SimpleAndroidBarChart:1.0.1'
 }

Usage

Basic Example (Kotlin)

Firstly, you need to add this custom text view to the layout of the class

    <com.boyzdroizy.simpleandroidbarchart.SimpleBarChart
        android:id="@+id/simpleBarChart"
        android:layout_width="match_parent"
        android:layout_height="match_parent" />

In your class, using the 'id' from layout, call 'setChartData' method to give values for populate the chart.

    val chartData = (12 downTo 1).map { Random.nextInt(10, 100) }.toMutableList()
    val intervalData = (12 downTo 1).map { it }.toMutableList()

    simpleBarChart.setChartData(chartData, intervalData)
    simpleBarChart.setMaxValue(max)
    simpleBarChart.setMinValue(0)

Find this library useful? ❤️

Be free to use it and enjoy. ⭐

License

MIT License

Copyright (c) 2022 BoyzDroizy

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.