This question already has an answer here:
I have a requirement to create a horizontal bar graph that shows comparison between two values. So I need to create only two horizontal bars, first one is for total amount and second one is for consumed amount.
could some one please help me with suggestions to create a bar chart in android. I look forward to hearing from you at the earliest.
Thanks in advance
Just check this Bar Chart in Android With out any Built in jars
. Here you can draw charts without any built in jars. Its just simple Graph creation using the concept of setting the height for the textview in a ListView.
I implemented this by using the Horizontal ListView. Here you have the two double arrays with equal size of elements. And the graph will adjust according to the orientation(Portrait and landscape).
If you want more charts in one activity, you can implement another Horizontal Listview in the layout.
I hope this will help you....