0

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.

Rais Alam
  • 6,970
  • 12
  • 53
  • 84
kanmani
  • 671
  • 1
  • 10
  • 28
  • 1
    possible duplicate of [Cocoa Graphing/Plotting Framework that Works on iPhoneOS](http://stackoverflow.com/questions/263472/cocoa-graphing-plotting-framework-that-works-on-iphoneos) – John Parker Jan 27 '11 at 10:05

4 Answers4

1

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.

John Parker
  • 54,048
  • 11
  • 129
  • 129
1

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).

Cœur
  • 37,241
  • 25
  • 195
  • 267
microspino
  • 7,693
  • 3
  • 48
  • 49
  • Thank You microspino...Thanks for your sample application in this regard.Which is very much useful for me to start my application. – kanmani Jan 31 '11 at 07:09
0

Here you go, but next time please use the search function first: http://code.google.com/p/core-plot/


Cocoa Graphing/Plotting Framework that Works on iPhoneOS

Community
  • 1
  • 1
woodleader
  • 923
  • 1
  • 5
  • 14
0

A popular one is core plot. http://code.google.com/p/core-plot/

Luke Mcneice
  • 3,012
  • 4
  • 38
  • 50