vote up 14 vote down star
15

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.

flag

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

10 Answers

vote up 10 vote down check

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|flag
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 at 13:57
3d pies? come on! that's an abomination. – Eduardo Leoni Nov 15 at 23:41
vote up 0 vote down

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|flag
vote up 2 vote down

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

link|flag
vote up 2 vote down

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|flag
vote up 0 vote down

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|flag
vote up 10 vote down

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

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

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|flag
vote up 1 vote down

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|flag
vote up 0 vote down

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

link|flag
vote up 6 vote down

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|flag

Your Answer

Get an OpenID
or

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