Richard Stelling
Richard Stelling

Reputation: 25665

Objective-C Charting Framework

I'm in urgent need of an Objective-C/Cocoa/Cocoa Touch framework to handle simple charting; pie chards, histograms etc.

The only thing that comes close is:

http://code.google.com/p/gchart-objc/

But it seems to be quite an early release and not maintained.

Has anyone created or used such a framework or library.

Upvotes: 10

Views: 19657

Answers (4)

Gökhan Aydın
Gökhan Aydın

Reputation: 187

this is also a legend lib for charts : https://github.com/danielgindi/Charts

Upvotes: 0

Alon Gubkin
Alon Gubkin

Reputation: 57119

I use Core Plot. See this blog post for a tutorial.

Upvotes: 19

dhilipsiva
dhilipsiva

Reputation: 3718

you can have a look at DSBarChart. It is a tiny library for creating Histograms.

Upvotes: 1

Quinn Taylor
Quinn Taylor

Reputation: 44769

I'll echo the suggestion of core-plot, and add some additional plotting references that may be of interest:

http://cocoaheads.byu.edu/resources/plot

Upvotes: 5

Related Questions