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.

link|improve this question

79% accept rate
feedback

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

This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ for guidance on how to improve it.

11 Answers

up vote 10 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/

link|improve this answer
this is outstanding – Andrew Heath Aug 13 '10 at 6:54
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 at 17:00
feedback

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.

link|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
4  
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
feedback

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.

link|improve this answer
feedback

I think JpGraph is fantastic.

link|improve this answer
feedback

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)
link|improve this answer
feedback

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

link|improve this answer
feedback

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.

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

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');
  }
}
link|improve this answer
1  
phpchart.net is also built on top of jqPlot. – Chensformers May 9 at 23:49
feedback

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();
?>
link|improve this answer
feedback

PHP GD

Your imagination is the limit.

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

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

link|improve this answer
feedback

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