Jordan T. Cox
Jordan T. Cox

Reputation: 332

Creating Graphs on an iPad/iPhone

I was wondering if anyone knew of a simple way to implement graphing in an iPhone/iPad application. I've spent quite a bit of time googling and can't seem to find any sort of a solution. Maybe I'm just searching with the wrong terms since a lot of consumers are asking about "graphing" in terms of using their applications, not developing them, the search-space is rather polluted.

It seems like a lot of iPad/iPhone applications have embedded graphs... and I can't imagine that every developer has invented their own graphing engine from the ground up. Or, maybe they have... Does anyone have any suggestions?

Upvotes: 4

Views: 7953

Answers (3)

dacopenhagen
dacopenhagen

Reputation: 2510

From my experience graphs are best done through UIWebView's and then written in HTML/JavaScript - there are many great html/javascript libraries for graphings. Personally, I like

but these exist as well.

Upvotes: 0

Seb Kade
Seb Kade

Reputation: 1983

I have herd wonders about core plot but for myself i wrote a graph View Class which creates a standard graph.

Have a look

http://sebkade.wordpress.com/2010/05/06/basic-graph-class-for-iphone/

hope it helps

Upvotes: 0

Ole Begemann
Ole Begemann

Reputation: 135550

Core Plot is one popular option.

Upvotes: 5

Related Questions