Reputation: 669
I'm assigned with new task for creating chart application in iphone like.,(BarChart,PieChart,etc..,).But,i have no idea for chart application in iphone.Please anyone help me out to guide me to start chart application in iphone.If any of the frameworks or API used for this kind of chart application means please explain that also.
Upvotes: -1
Views: 2826
Reputation: 7781
Give a shot to: Core-Plot Framework
To get it working, read here. You can also see the accepted answer of this SO question. For a little bar-chart tutorial go here.
There is also: s7graphview less features but It's an option.
If you can rely on the web, although it's a far from optimal solution, you can embed a UIWebView in your application, and use the Google Graph Visualization API or you can use a UIWebView with an HTML5 graph library lake rgraph. Look here for a jQuery based solution. Filament Group made also this one.
At the and some sample code from Apple (Accelerometer Graph).
Upvotes: 1
Reputation: 2720
A popular one is core plot. http://code.google.com/p/core-plot/
Upvotes: 0
Reputation: 923
Here you go, but next time please use the search function first: http://code.google.com/p/core-plot/
Upvotes: 0
Reputation: 54425
A commonly used Cocoa "native" charting library is core-plot. Whilst I've yet to personally use it, it seems to be quite popular and is under active development.
Upvotes: 1