views:

240

answers:

1

Right, I really want to output a Bar Graph to an Obj-C iPhone application - now I may be missing a vital SDK class or something; but right now my solution is to embed a WebView and inside that have a JQuery/Flot based graph - not totally ideal I know!

Just wondering if anybody has any other creative solutions or whether a WebView/AJAX solution is the way to go?

(For the record; my data source will be figures returned from an external source - i.e downloaded from the internet. So I was even toying with having a PHP Proxy/script do all the work on that, return the figures AND a graph to the application - but then I risk placing extra strain on the server!)

+1  A: 

Check out Core Plot. It's a plotting (graphing) framework for both Mac and iPhone.

Dave DeLong
That looks perfect! Thankyou!
Moddy