Open In App

Android – Create Group BarChart with Kotlin

Last Updated : 30 Jun, 2022
Improve
Improve
Like Article
Like
Save
Share
Report

Bar Charts in android are used to represent vast amounts of data in an easily readable format. We can display a single bar chart within our bar chart. But for making a comparison between two categories we can implement a group bar chart to display data for both categories side by side. In this article, we will be building a simple Group Bar Chart in our android application using Kotlin. A sample GIF is given below to get an idea about what we are going to do in this article.

Create Group BarChart with Kotlin

 

Note: If you are looking to implement Group Bar Chart in an Android application using Java. Check out the following article: How to Create Group BarChart in Android using Java

Step by Step Implementation

Step 1: Create a New Project in Android Studio

To create a new project in Android Studio please refer to How to Create/Start a New Project in Android Studio. Note that select Kotlin as the programming language.

Step 2: Add dependency and JitPack Repository

Navigate to the Gradle Scripts > build.gradle(Module:app) and add the below dependency in the dependencies section.  

implementation 'com.github.PhilJay:MPAndroidChart:v3.1.0'

Add the JitPack repository to your build file. Add it to your root build.gradle at the end of repositories inside the allprojects{ } section.

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

After adding this dependency sync your project and now we will move towards its implementation.  

Step 3: Working with the activity_main.xml file

Navigate to the app > res > layout > activity_main.xml and add the below code to that file. Below is the code for the activity_main.xml file. 

XML




<?xml version="1.0" encoding="utf-8"?>
<!--on below line we are creating a swipe to refresh layout-->
<RelativeLayout 
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:fillViewport="true"
    android:orientation="vertical"
    tools:context=".MainActivity">
  
    <TextView
        android:id="@+id/idTVHead"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_margin="4dp"
        android:gravity="center"
        android:padding="4dp"
        android:text="Group Bar Chart"
        android:textAlignment="center"
        android:textColor="@color/purple_200"
        android:textSize="20sp"
        android:textStyle="bold" />
  
    <!--Ui component for our bar chart-->
    <com.github.mikephil.charting.charts.BarChart
        android:id="@+id/idBarChart"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_below="@id/idTVHead" />
  
</RelativeLayout>


Step 4: Working with the MainActivity.kt file

Navigate to app>java>your app’s package name>MainActivity.kt file and add the below code to it. Comments are added in the code to get to know in detail. 

Kotlin




package com.gtappdevelopers.kotlingfgproject
  
import android.os.Bundle
import androidx.appcompat.app.AppCompatActivity
import com.github.mikephil.charting.charts.BarChart
import com.github.mikephil.charting.components.XAxis
import com.github.mikephil.charting.data.BarData
import com.github.mikephil.charting.data.BarDataSet
import com.github.mikephil.charting.data.BarEntry
import com.github.mikephil.charting.formatter.IndexAxisValueFormatter
  
class MainActivity : AppCompatActivity() {
  
    // on below line we are creating 
    // variables for our bar chart
    lateinit var barChart: BarChart
      
    // on below line we are creating 
    // a variable for bar data set
    lateinit var barDataSet1: BarDataSet
    lateinit var barDataSet2: BarDataSet
  
    // on below line we are creating array list for bar data
    lateinit var barEntriesList: ArrayList<BarEntry>
  
    // creating a string array for displaying days.
    var days = arrayOf("Sunday", "Monday", "Tuesday", "Thursday", "Friday", "Saturday")
  
    override fun onCreate(savedInstanceState: Bundle?) {
        super.onCreate(savedInstanceState)
        setContentView(R.layout.activity_main)
          
        // on below line we are initializing 
        // our variable with their ids.
        barChart = findViewById(R.id.idBarChart)
  
        // on below line we are creating a new bar data set
        barDataSet1 = BarDataSet(getBarChartDataForSet1(), "C++")
        barDataSet1.setColor(resources.getColor(R.color.purple_200))
        barDataSet2 = BarDataSet(getBarChartDataForSet2(), "Java")
        barDataSet2.setColor(resources.getColor(R.color.teal_200))
  
        // on below line we are adding bar data set to bar data
        var data = BarData(barDataSet1, barDataSet2)
  
        // on below line we are setting data to our chart
        barChart.data = data
  
        // on below line we are setting description enabled.
        barChart.description.isEnabled = false
  
        // on below line setting x axis
        var xAxis = barChart.xAxis
  
        // below line is to set value formatter to our x-axis and
        // we are adding our days to our x axis.
        xAxis.valueFormatter = IndexAxisValueFormatter(days)
  
        // below line is to set center axis
        // labels to our bar chart.
        xAxis.setCenterAxisLabels(true)
  
        // below line is to set position
        // to our x-axis to bottom.
        xAxis.position = XAxis.XAxisPosition.BOTTOM
  
        // below line is to set granularity
        // to our x axis labels.
        xAxis.setGranularity(1f)
  
        // below line is to enable
        // granularity to our x axis.
        xAxis.setGranularityEnabled(true)
  
        // below line is to make our
        // bar chart as draggable.
        barChart.setDragEnabled(true)
  
        // below line is to make visible
        // range for our bar chart.
        barChart.setVisibleXRangeMaximum(3f)
  
        // below line is to add bar
        // space to our chart.
        val barSpace = 0.1f
  
        // below line is use to add group
        // spacing to our bar chart.
        val groupSpace = 0.5f
  
        // we are setting width of
        // bar in below line.
        data.barWidth = 0.15f
  
        // below line is to set minimum
        // axis to our chart.
        barChart.xAxis.axisMinimum = 0f
  
        // below line is to
        // animate our chart.
        barChart.animate()
  
        // below line is to group bars
        // and add spacing to it.
        barChart.groupBars(0f, groupSpace, barSpace)
  
        // below line is to invalidate
        // our bar chart.
        barChart.invalidate()
  
    }
  
    private fun getBarChartDataForSet1(): ArrayList<BarEntry> {
        barEntriesList = ArrayList()
        // on below line we are adding 
        // data to our bar entries list
        barEntriesList.add(BarEntry(1f, 1f))
        barEntriesList.add(BarEntry(2f, 2f))
        barEntriesList.add(BarEntry(3f, 3f))
        barEntriesList.add(BarEntry(4f, 4f))
        barEntriesList.add(BarEntry(5f, 5f))
        return barEntriesList
    }
  
    private fun getBarChartDataForSet2(): ArrayList<BarEntry> {
        barEntriesList = ArrayList()
        // on below line we are adding data 
        // to our bar entries list
        barEntriesList.add(BarEntry(1f, 2f))
        barEntriesList.add(BarEntry(2f, 4f))
        barEntriesList.add(BarEntry(3f, 6f))
        barEntriesList.add(BarEntry(4f, 8f))
        barEntriesList.add(BarEntry(5f, 10f))
        return barEntriesList
    }
  
}


Now run your application to see the output of it. 

Output:



Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads