Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to plot real time data in android? [closed]

Tags:

android

charts

I am designing an android application where I want to plot real time data which I receive through bluetooth. I receive a signal and process it to get some result and I want to display it in real time. I saw there are various android libraries for drawing charts. I am a bit confused as to go with one such library or to use Javascript. Can anyone suggest it which is a better option to go with? And also, which Android library to use?

like image 639
Khushboo Avatar asked Oct 15 '12 05:10

Khushboo


2 Answers

There are many charting libraries for android but every time I had a requirement I used android native 2D graphics framework using Canvas. I never looked for other alternatives. It is simple and you have a lot of control. Well just to inform..

like image 117
Krishnabhadra Avatar answered Nov 12 '22 06:11

Krishnabhadra


Its better to use flot-android-chart for different types of charts creation.

or you can simply use achartengine

if you want to try creating charts without any built in jars just look at this Bar Chart in Android With out any Built in jars(But it is only bar chart)

like image 32
Ram kiran Pachigolla Avatar answered Nov 12 '22 06:11

Ram kiran Pachigolla