views:

100

answers:

1

Dear all,

I am finding a charting library for IPhone which can build a chart similar to Bloomberg Financial' chart but still not find out yet, Core-Plot is a powerful library but it is not support zoom using multi-touch. Is there anybody know about this please help me!

You can watch this video to know about Bloomberg's chart: http://www.youtube.com/watch?v=i_iNKZaji8k&feature=related

+3  A: 

There is core-plot: http://code.google.com/p/core-plot/

Eiko
Thanks Eiko, I knew this one already, as I mentioned that it is a powerful charting library but it not support zooming use multi-touch
Son Nguyen
I didn't see multitouch zoom in the video either. If you want the whole thing to zoom it should be easy to wrap into a scrollview. If you only want to change the visible data but keep it in place, hook up gesture recognizers and update the data for the chart.
Eiko
@Son Nguyen - If you want to do a line chart with gradient shading, like you find in the Bloomberg chart, Core Plot is the only open source framework capable of that on the iPhone that I'm aware of. Pinch-zooming has been implemented by several users, but it not part of the mainline codebase as of the last time I checked. You're welcome to help us implement it.
Brad Larson
Son Nguyen
That looks really good. I haven't used core-plot myself yet and I'm short on time, but from glancing over the code it should be possible to add this functionality. Maybe the core-plot guys can help you out, or offer some cash for the person who adds this.
Eiko
I am looking at the core-plot library with some help from Michele Colombo, the zoom function using multi-touch is done now!
Son Nguyen