vote up 9 vote down star
11

I have a need to render and display charts (bar charts for now, but more types may be needed later) in an iPhone app I'm working on. I've done some looking around and it doesn't look like there are any really good, mature charting libraries for iPhone yet. I've also looked for something written for Cocoa on the Mac that can be adapted, but haven't found anything great yet.

Anybody dealt with this before? Any recommendations?

I did find Core Plot, but it seems to be in the early stages of development.

Edit to add some details of requirements (as they currently stand ;) )

  • Bar Charts
  • Horizontal bar charts
  • Double stacked bar charts
  • Axis labels (including rotated 90 degrees on the y axis)
  • Labels above each bar on the chart
  • Shaded or custom backgrounds
flag

72% accept rate

4 Answers

vote up 1 vote down

You can check out this place and sign up for the beta .... http://mfxstudios.com/Application.html hopefully its what you're looking

link|flag
vote up 0 vote down

You can theoretically use the Google Chart API along with a Cocoa wrapper. This could be a light-weight solution.

link|flag
I did consider this, but Google Charts won't work without an internet connection. – Mike Akers Apr 20 at 23:26
vote up 2 vote down

I went through my own search a year or two ago, and ended up making my own line graphing classes because I couldn't find anything that worked exactly the way I needed it to. The two big ones to look at though, are SM2DGraphView and GraphX. I haven't tried either in an iPhone project, but I know SM2DGraphView is open source so you could modify it if needed.

I've also considered using a WebView to use a JavaScript graphing library, but that's just a thought.

link|flag
vote up 6 vote down

One of the many factors that motivated the Core Plot project was the lack of good plotting frameworks on the iPhone. Core Plot also encompases many other use cases including desktop systems, but its design has included iPhone support from the beginning. It's getting pretty close to useable. At the moment, only axis drawing is missing from scatter plots. I'm not sure of the status of bar charts. If you're inclined, you help would be greatly appreciated, I'm sure.

Project on google code

link|flag
Agreed. There are some very good scientifically-minded Cocoa programmers working on this, so I'd expect it to advance rapidly. Also, the Google Group for this is at groups.google.com/group/coreplot-discuss?hl=en/… . The archives are worth reading through, to see where people are going with this. – Brad Larson Apr 20 at 22:56
1  
I've looked into Core Plot and it looks like bar charts are completely unimplemented. Still I'll keep an eye on this project. – Mike Akers Apr 20 at 23:27

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.