The jqChart...
<?php 
require_once '../../../tabs.php';
?>
<!DOCTYPE html>
<html>
  <head>
    <style type="text">
        html, body {
            margin: 0;            /* Remove body margin/padding */
            padding: 0;
            overflow: hidden;    /* Remove scroll bars on browser window */
            font-size: 62.5%;
        }
        body {
            font-family: "Trebuchet MS", "Helvetica", "Arial",  "Verdana", "sans-serif";
        }
        #tags {z-index: 900}
    </style>
    <title>jqChart PHP Demo</title>
    <link rel="stylesheet" type="text/css" media="screen" href="../../../themes/redmond/jquery-ui-1.8.2.custom.css" />
    <script src="../../../js/jquery.js" type="text/javascript"></script>
    <script src="../../../js/jquery.jqChart.min.js" type="text/javascript"></script>
     
    <script src="../../../js/jquery-ui-custom.min.js" type="text/javascript"></script>
  </head>
  <body>
      <div>
        <?php include ("chart.php");?>
      </div>
      <br/>
      <?php tabs(array("chart.php"));?>
   </body>
</html>
chart.php.
<?php
require_once '../../../jq-config.php';
require_once 
ABSPATH."php/jqUtils.php";

require_once 
ABSPATH."php/jqChart.php";

$chart = new jqChart();
$chart->setChartOptions(array(
    
"defaultSeriesType"=>"bar"
))
->
setTitle(array('text'=>'Historic World Population by Region'))
->
setSubtitle(array("text"=>'Source: Wikipedia.org'))
->
setxAxis(array(
    
"categories" => array('Africa''America''Asia''Europe''Oceania'),
    
"title"=>array("text"=>null),
))
->
setyAxis(array(
    
"min"=>0,
    
"title"=>array("text"=>'Population (millions)'),
    
"align"=> 'high'
))
->
setTooltip(array(
    
"formatter"=>"function(){return this.series.name +': '+ this.y +' millions';}"
))
->
setPlotOptions(array(
    
"bar"=>array(
        
"dataLabels"=>array(
            
"states"=>array("enabled"=>true)
        )
    )
))
->
setLegend(array(
    
"layout"=> 'vertical',
    
"align"=> 'right',
    
"verticalAlign"=> 'top',
    
"x"=> -100,
    
"y"=> 100,
    
"floating"=> true,
    
"borderWidth"=> 1,
    
"backgroundColor"=> '#FFFFFF',
    
"shadow"=>true
))
->
addSeries('Year 1800', array(107316352032))
->
addSeries('Year 1900', array(1331569474086))
->
addSeries('Year 2008', array(973914405473234));

echo 
$chart->renderChart(''true700350);

?>