Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

What do you think is the best diagram and graphing toolset for PHP that also look good?

I know that there are some open source graphing tools for PHP out there, but they are not really visually appealing to me.

share|improve this question

closed as not constructive by Will Sep 14 '11 at 15:18

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

11 Answers

up vote 16 down vote accepted

I think you should check out pChart. It is very very slick, including antialiasing and all sorts of nice aesthetics. It's pretty easy to use and there are a tonne of tutorials:

http://pchart.sourceforge.net/

share|improve this answer
this is outstanding – Andrew Heath Aug 13 '10 at 6:54
1  
pChart 2 is out... pchart.net – Shackrock Jul 24 '11 at 21:24
   
Check out phpChart phpChart.net. javascript charting for PHP. – Chensformers Apr 2 '12 at 17:00

The Google Chart API has some excellent featuers and can be used from PHP without any trouble at all. The added benefit is that you don't have to deal with the processing time to render the graph out.

Here is a simple example...

example graph or another example

Both taken from the docs.

share|improve this answer
Please note that you need to notify Google if you expect more than 250,000 requests a day. – Randell Jul 27 '09 at 6:45
5  
The problem with Google Chart is that it does not support negative values. You need to do a work around to get negative values, which is a pain. – Marcel Tjandraatmadja Sep 4 '09 at 8:37
1  
Image charts have been deprecated as of April 20th, 2012 - developers.google.com/chart/image – barfoon Aug 2 '12 at 21:15

I think JpGraph is fantastic.

share|improve this answer
I thought so too but then i look at their website and noticed there's been no updates in a while... (>2 years) – Felipe Almeida Aug 8 '12 at 19:38

Not necessarily the best, but Open flash chart looks nice and is quite easy to use if you don't mind embedding Flash objects in your site.

Component includes swf file which is embedded to the page and classes for outputting needed html in several different languages including PHP.

share|improve this answer

If you are in need of a pure PHP solution, then I think the ezComponents graph package is what you are looking for. It's very sophisticated and the examples are pretty outstanding, check this tutorial for a couple examples.

The reasons why I like to recommend ezComponents:

  • easy to install through the PEAR install
  • awesome code quality (clear CS across the board, documentation)
  • clear IP and liberal license (New BSD License)
share|improve this answer
ezComponents is an outstanding library and I like it, but the code is very Java-ish (not in a good sense IMHO). One needs to invest a lot of time to understand the structure of the whole project. It is still one of the few charting libraries with license that is free for commercial use though (the other being Artichow - see e-satis's answer). – johndodo Sep 20 '12 at 8:22

You should give more details about what you want to do with it. Still, I used Artichow to produce a economical data analysis to my business department, and it was perfect.

Some relevant points :

  • require GD2
  • main documentation in French, but codes examples are included in the release and it's plain PHP + english
  • as good as jpgraph (nice work too), but free and open source

The tool is really easy to learn and produce nice graphics at a reasonable speed rate.

Here is what it looks like (from the official doc) :

<?php
/*
 * This work is hereby released into the Public Domain.
 * To view a copy of the public domain dedication,
 * visit http://creativecommons.org/licenses/publicdomain/ or send a letter to
 * Creative Commons, 559 Nathan Abbott Way, Stanford, California 94305, USA.
 *
 */

require_once "../../BarPlot.class.php";

$graph = new Graph(450, 400);

$graph->setAntiAliasing(TRUE);

$blue = new Color(0, 0, 200);
$red = new Color(200, 0, 0);

$group = new PlotGroup;
$group->setPadding(40, 40);
$group->setBackgroundColor(
    new Color(240, 240, 240)
);

$values = array(12, 8, 20, 32, 15, 5);

$plot = new BarPlot($values, 1, 2);
$plot->setBarColor($blue);
$plot->setYAxis(Plot::LEFT);

$group->add($plot);
$group->axis->left->setColor($blue);
$group->axis->left->title->set("Blue bars");

$values = array(6, 12, 14, 2, 11, 7);

$plot = new BarPlot($values, 2, 2);
$plot->setBarColor($red);
$plot->setYAxis(Plot::RIGHT);

$group->add($plot);
$group->axis->right->setColor($red);
$group->axis->right->title->set("Red bars");

$graph->add($group);
$graph->draw();
?>
share|improve this answer
Note that Artichow appears to be dead (sleeping?) and the homepage no longer exists. However I was able to find sources here - not sure if they are latest or not (but probably are as the archive was made in 2009). The license is "Public Domain". Note that most comments and documentation is in French, however function and variable names are in English. – johndodo Sep 20 '12 at 6:20
Despite homepage no longer being there you can find it on WayBackMachine and download both version 2.0 alpha and 1.1.0. Code looks clean and the charts look nice. Google translate, here I come. ;) – johndodo Sep 20 '12 at 10:16

Check out http://pear.veggerby.dk/

share|improve this answer

I would recommend fusioncharts - fusion charts demo

It uses XML so you can use whatever language you like. Very clean and very visually appealing. I think they even have maps.

share|improve this answer
1  
Please note that the professional (better) version of Fusion Charts is not free. – Randell Jul 27 '09 at 6:42

I'm working on a plugin for jqplot (a nice javascript graphing extension for jquery) for agile toolkit so if you want a website with some nice looking graphs and are not so hot with php, this might be a good alternative. I've put some instructions and examples at www.sterlingend.co.uk.

Heres an example of the php code to draw a simple line graph but there are more complex examples available.

class page_line extends Page {
function init(){
  parent::init();

   $p=$this;

$this->api->template->append('css_include', '<link type="text/css"
  href="./atk4-addons/sterling/jqplot/templates/js/jqplot/jquery.jqplot.css" rel="stylesheet" />'."\n");

$this->api->template->append('ie_include','<script type="text/javascript"
  src="./atk4-addons/sterling/jqplot/templates/js/jqplot/excanvas.min.js"></script>'."\n");
$this->api->template->append('js_include','<script type="text/javascript"
  src="./atk4-addons/sterling/jqplot/templates/js/jqplot/jquery.jqplot.min.js"></script>'."\n");

  $this->js()->_load('jqplot_helper');
  $chart = $p->add('jqplot', null, 'chart1');
  $chart->setSeries(array(array(3,7,9,1,4,6,8,2,5)));
}
  function defaultTemplate(){
       return array('page/line');
  }
}
share|improve this answer
2  
phpchart.net is also built on top of jqPlot. – Chensformers May 9 '12 at 23:49

PHP GD

Your imagination is the limit.

share|improve this answer
7  
but your time for development is usually pretty limiting. – Ericson578 Sep 8 '11 at 22:07

JPGraph does a good job. You can find a tutorial showing you how to use JPGraph with PHP here.

share|improve this answer

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