Source

<html>
<head>
</head>

<body>
<?php

include_once '../config.inc.php5';

$chart = new QBarchartGoogleGraph;
$chart    ->addDrawProperties(
            array(
                
"title"=>'Company Performance',
                
'isStacked'=>'true',
                
"backgroundColor" => "{stroke:'black', fill:'#eee', strokeSize: 1}",
                )
            )
        ->
addColumns(
            array(
                array(
'string''Year'),
                array(
'number''Sales'),
                array(
'number''Expenses')
                )
            )
        ->
setValues(
            array(
                array(
00'2004'),
                array(
011000),
                array(
02400),
                array(
10'2005'),
                array(
111170),
                array(
12460),
                array(
20'2006'),
                array(
21660),
                array(
221120),
                array(
30'2007'),
                array(
311030),
                array(
32540),
            )
        );

$htmlEntities $chart->render(false,true);
echo 
$htmlEntities;

echo 
$chart->getReferenceLink();



include_once(
"source.inc.php5");

?>
</body>
</html>