Anyone know how to create line graphs on iOS without using Core-Plot but using inbuilt frameworks? Desperately searching for an answer.

link|improve this question
feedback

closed as not constructive by Will May 6 at 19:58

This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ for guidance on how to improve it.

4 Answers

up vote 4 down vote accepted

Some of the charting libraries for iPhone/iPad that I found were:

http://code.google.com/p/core-plot/

http://code.google.com/p/s7graphview/

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

http://www.rgraph.net/

http://www.ivisualization.com/

http://www.vvi.com/apps/vvidget

http://github.com/duivesteyn-enterprises/deSimpleChart.

You can use whatever you feel convenient with.

I would prefer using Core Plot Library though

Hope this helps you.

EDIT:

You can refer to this link to integrate the graph library core plot into your app.

http://www.switchonthecode.com/tutorials/using-core-plot-in-an-iphone-application

And once your core plot repository is downloaded,you can go to the folder suggested by Brad Larson (in the below link) to get a tutorial for line chart.

Are there any examples for how to draw a line chart in Core Plot on the iPhone?

Also you can refer it here:

http://code.google.com/p/core-plot/source/browse/#hg/examples

link|improve this answer
Did this answer help you? Did you refer to any other libraries? – Parth Bhatt Aug 31 '11 at 11:14
Sorry! My company had a network issue. About the answer, some of the links don't work. And I did mention in my question that I didn't endorse core-plot (I was asked not to by my senior lead) and I wanted something with the inbuilt frameworks. In fact, if I were to be honest, none of the links were helpful. But seriously, thanks for the effort! :) I am currently scrutinizing the CoreGraphics methods. – Joel Joseph Aug 31 '11 at 11:51
Actually can you ask your senior what is wrong with the core-plot? – Parth Bhatt Aug 31 '11 at 11:55
Will do. :) Do you have any sample code that uses core-plot to plot line graphs? I am going crazy with this thing! – Joel Joseph Aug 31 '11 at 12:06
@Joel Joseph: Downlaod the core plot repository. There under the repository itself it has multiple examples which shows each and every kind of charts it supports. Tutorial for line graph is included in that repository itself. – Parth Bhatt Aug 31 '11 at 12:21
show 5 more comments
feedback

Apple have some sample code for drawing graphic in Quartz here:

http://developer.apple.com/library/ios/#samplecode/AccelerometerGraph/Introduction/Intro.html

link|improve this answer
This code doesn't plot any graph for me on the simulator. :S Any idea what could be the reason? I use iOS SDK 4.3 version. Thanks for the effort! – Joel Joseph Aug 31 '11 at 11:39
feedback

Try to use CoreAnimation, CoreGraphics, Quartz frameworks.

link|improve this answer
Hmmm..What do I say, I was hoping for a more concrete answer. I am quite new to this development field. I did have an idea I had to use CoreGraphics and Quartz frameworks. Anyways, thanks for the help! Appreciated. :) – Joel Joseph Aug 31 '11 at 11:36
feedback

As well as CorePlot, there are several commercial tools for iOS charting:

As a full disclosure, I work for Scott Logic which is the parent company for ShinobiControls.

link|improve this answer
Since your profile says you work closely with the ninjas who develop ShinobiControls, this recommendation isn't entirely frank. – Jonathan Leffler May 4 at 5:53
@JonathanLeffler sorry, I see your point. I have added a full disclosure, which is I believe acceptable form for this sort of thing on StackOverflow. – ColinE May 4 at 7:26
@JonathanLeffler I have also changed the answer to include all the commercial charting libraries I am aware of that are not detailed in the accepted answer. – ColinE May 4 at 8:02
That's fine by me, Colin. Thanks. – Jonathan Leffler May 4 at 12:57
feedback

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