I am working on the application which measures the data usage of application/process running in the android device.
I want represent this data usage in terms bar graph which will draw along the x-axis. Upper side of the x-axis (Red bar) will show the data which transmitted, and lower side (Green bar) will show the data which received.
Attached screenshot may clear your doubts.
I also checked with the popular graph drawing libraries Ex: AChartEngine
, AndroidPlot
and afreechart
but it not having support to draw such type of graph.
Is it possible to draw a such type of graph? Any suggestion always welcome..
try making 2 XYSeries add them on the same index and set the type to
TYPE.STACKED
if i'm correct that will stack them togheter and if you change the color of them it should be possible