It is necessary for my application to have a label on each bar of the bar chart. Is there a way to do this with MPAndroidChart? I could not find a way to do this on the proj
You can use IndexAxisValueFormatter to make things easier.
final String[] labels = new String[] {"Dummy", "Jan", "Feb", "March", "April", "May",
"June", "July", "Aug", "Sept", "Oct", "Nov", "Dec"};
xAxis.setValueFormatter(new IndexAxisValueFormatter(labels));
xAxis.setGranularity(1f);
xAxis.setGranularityEnabled(true);