Advanced Graphing Class for PHP
Advanced Graphing Class from Zack Bloom allows you to create stunning graphs from your PHP applications. Here’s a sample graph example to show you how easy it to generate a graph using this class

$graph = new graph();
$graph->setProp("showkey",true);
$graph->setProp("type","pie");
$graph->setProp("showgrid",false);
$graph->setProp("key",array('alpha','beta',
'gamma','delta','pi'));
$graph->setProp("keywidspc",-50);
$graph->setProp("benchmark",true);
$graph->setProp("keyinfo",2);
$graph->demoData(5,1,10);
$graph->graph();
$graph->showGraph('images/exa19.png');
More Graph Examples at:Advanced Graphing Class Examples
Get the Advanced Graphing Class from: http://www.zackbloom.org/

