up vote 14 down vote favorite
19
share [g+] share [fb]

I'm trying to find a good Graph drawing library for my PHP application. Currently I am limited to viewing the data in a table which while specific, is a bit ugly.

I require a non-flash system if possible.

link|improve this question

Graphs or charts? All the answers are for charts, but you don't mention them... Graphs are about nodes and vertices... – PhiLho Dec 28 '08 at 16:29
dupe of stackoverflow.com/questions/110839/… – RCIX Nov 15 '09 at 4:30
feedback

12 Answers

up vote 13 down vote accepted

I had this similar problem a month ago and ended up going for Google Charts. It's extremely fast, very powerful (only one or two features I've wanted have been missing and they weren't a big deal) and things like the 3D pie charts add instant visual appeal.

There is at least one wrapper called Gphpchart but it looks like their site has currently been hacked (sigh) so don't go clicking on any of the links until it gets fixed or restored.

I found a couple of relevant questions about this:

link|improve this answer
1  
I second that. Google Charts is very easy and quick to implement in any web language. – Bob Somers Dec 27 '08 at 23:05
Google charts is very nice, although building the urls can sometimes be rather difficuilt. – Pim Jager Dec 27 '08 at 23:11
@Pim: that's why you use Gphpchart or another wrapper. – cletus Dec 27 '08 at 23:18
Remember that Google Chart's EULA requires the thing using the API to be publicly available. So, for example, you can't use the charts in a closed-community software. Or, this was the case at least a few months ago - don't know if they have changed it since. You better check. – Henrik Paul May 6 '09 at 13:57
1  
3d pies? come on! that's an abomination. – Eduardo Leoni Nov 15 '09 at 23:41
feedback

pChart is a relatively new PHP library that creates great looking (non-flash) charts.

link|improve this answer
Those charts look great better than some flash charts i've seen, on the face of it this looks fantastic. Thanks – Jonathan Dec 30 '08 at 0:00
1  
Beautiful charts. It is open source under GPL which might be relevant if you need to distribute your website to others. – MarkJ Sep 21 '09 at 12:51
feedback

You might be interested in Open Flash Chart 2 - the flash charting engine used by Piwik:

May not be suitable for print purposes - to be honest I haven't checked whether Flash prints or not!

If you need to output to images rather than Flash, JpGraph might be worth a look too:

(JpGraph may have some functionality only available in "pro" version)

link|improve this answer
Open Flash Chart 2 helps in rendering nice looking graphs.They can also be saved as images if required. – Annibigi Nov 25 '11 at 7:19
feedback

I found Flot (http://code.google.com/p/flot/) to be really simple and useful. Has much more flexibility that Google Charts.

link|improve this answer
feedback

I just bookmarked a php chart library the other day. Good timing. :)

The graphs are some of the most beautiful I've seen available for free. I always found Google Charts kind of bland. pChart can be beautiful, but the learning curve is steeper. Still shouldn't be too steep.

link|improve this answer
feedback

Open Flash Chart would be my recommendation, as well. Another good one is amCharts. Unfortunately, both of these are Flash-based charts.

link|improve this answer
feedback

All I've used under PHP is ChartDirector, which seems like it has to be getting a little long in the tooth, but I was pretty happy with it.

link|improve this answer
feedback

It might be worthwhile to continue outputting the data as a table, and using javascript on the client to convert the table to a chart.

There's at least one good javascript package for this that I've used http://code.google.com/p/flot/ , and I'm sure there's some alternatives if that one doesn't cut it for your specific needs.

link|improve this answer
feedback

I'd like to cast an additional vote for Google Charts. Having lots of experience with other Google API's the charting API was amazingly simple and we've started integrating into many of our internal applications as well.

link|improve this answer
feedback

JPGraph is a comprehensive solution, and there is a free version that you can use. This tutorial shows you how to get started with JPGraph and PHP.

link|improve this answer
feedback

Probably not what you are looking for, but I have recently done some work on a framework for producing 2D charts allowing for live updates at a rate of over 50 changes per second.

The original intention was to mimic the appearance of a chart recorder in a scrolling region of a web page, but I believe the approach has wider application.

An demo can be found at Chart Recorder Demo if anyone is interested.

The appearance is defined by a template (www.journeylog.co.uk/chart/templates/chartRecorder.xml). One feature is the ability to specify drawing either on the server or in the browser using ExplorerCanvas.

If anyone is interested I could start an open source project for it.

link|improve this answer
feedback

pChart has been updated since the last couple of posts. It now looks very slick. I'm about to do some experimenting as a result of this thread, thanks for the leads. http://www.pchart.net/

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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