I am creating a budget application in iPhone. Budget for personal incomes & expenses.

Client's need is

  • I want to see line graph ( like stock market line report ).
  • Red line for (monthly / weekly / daily) expenses
  • Green line for (monthly / weekly / daily) incomes

The question is HOW?

Till now I have never faced this kind of requirement.

Can you please some guidance / hints regarding creating line chart in iphone?

Thanks in advance for sharing your knowledge.

Sagar.

link|improve this question

5  
You should probably start googling before you come here ;) – tom Nov 7 '09 at 21:51
I also want to integrate line chart in my app.What about Sencha touch ?? can we integrate in my app ? – harshit2811 Feb 1 at 4:42
feedback

3 Answers

up vote 13 down vote accepted

You should try Core Plot.

link|improve this answer
2  
For examples of the kind of line charts that Core Plot can generate, see this page on the project wiki: code.google.com/p/core-plot/wiki/PlotExamples – Brad Larson Nov 8 '09 at 3:08
feedback

I've done graphing using some javascript based graphing libraries but this project looks quite good to me I'd have look at this as an option s7graphview

link|improve this answer
feedback

I think this is the solution for it.

If you want to use graphs in your application, there are two options for you.

* Core Plot - http://code.google.com/p/core-plot/
* s7GraphView - http://code.google.com/p/s7graphview/

I found that s7graphview is more preferable to iPhone application & Core-Plot is more suitable to MAC OSx development.

I have downloaded both of them & started R & D on implementing it on application.

But Core-plot provides different kinds of facility & advance features while s7graphview is very limited.

Let me explain, how to install core plot,

First Go to this site,

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

You will see a command there(as given below) but you will not be able to execute it in your mac os terminal.

( hg clone https://core-plot.googlecode.com/hg/ core-plot )

Because it requires following things

  • Mercurial
  • Terminal Settings

Step 1 ) Let me explain terminal settings. Open Terminal & execute following commands

  • export LC_ALL=en_US.UTF-8
  • export LANG=en_US.UTF-8

Step 2 ) Download & setup mercurial from following link.

Step 3 ) Now open /Users/User-Name/core-plot/Examples

  • You will find samples here.

You may also continue a tutorial given here.

this link may be helpful.

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

link|improve this answer
MacPorts and Fink are not required for Core Plot development or usage, just a version of Mercurial. You can get Mercurial from the developer's website: mercurial.selenic.com. – Barry Wark Nov 11 '09 at 21:44
Python is included with OS X; there's no need to download/install it. – Barry Wark Nov 11 '09 at 22:32
feedback

Your Answer

 
or
required, but never shown

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