tags:

views:

62

answers:

2

Hi all, is there any api for drawing financial chart in android...

Thanks in advance.

+4  A: 

You can call the Google Charts API with HttpPost and then create an ImageView based on the OutputStream of your request. Make sure that you use ASyncTask when calling a server

cjavapro
Exactly what I came here to say, upvotes!
Dave
+1  A: 

Or if you don't want to access the net for that, you could use a lib. for that, like this one: http://www.achartengine.org/ . It's pretty good, I've used it recently in a project.

Scythe
I strongly suggest using this, as it is open source and pretty powerful. I needed a custom time chart for my sleep recording app and I only had to subclass and modify some of their source code. It worked perfectly!
Jon