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/jqGridPdo.php";
require_once ABSPATH."php/jqChart.php";
ini_set("display_errors","1");

$tooltip = <<<TOOL
function()
{
    var s;
    if (this.point.name) { // the pie chart
        s = ''+ this.point.name +': '+ this.y +' fruits';
    } else {
        s = ''+ this.x  +': '+ this.y;
    }
    return s;
}
TOOL;

$chart = new jqChart();
$chart->setTitle(array('text'=>'Combination chart'))
->
setxAxis(array(
    
"categories"=>array('Apples''Oranges''Pears''Bananas''Plums')
))
->
setTooltip(array("formatter"=>$tooltip))
->
setLabels(array(
    
"items"=>array(array(
        
"html"=> 'Total fruit consumption',
        
"style"=>array("left"=>"40px","top"=>"8px","color"=>"black")
    ))
))
->
addSeries('Jane', array(32134))
->
setSeriesOption('Jane','type','column')
->
addSeries('John', array(23576))
->
setSeriesOption('John','type','column')
->
addSeries('Joe', array(43390))
->
setSeriesOption('Joe','type','column')
->
addSeries('Total consumption', array(
    array(
"name"=>"Jane""y"=>13,'color'=>'#4572A7'),
    array(
"name"=>"John""y"=>23,'color'=>'#AA4643'),
    array(
"name"=>"Joe""y"=>19,'color'=>'#89A54E')
))
->
setSeriesOption('Total consumption',array(
    
"type"=>"pie",
    
"center"=>array(10080),
    
"size"=>100,
    
"showInLegend" =>false,
    
"dataLabels"=>array("enabled"=>false)
))
->
addSeries('Average', array(32.6736.333.33))
->
setSeriesOption('Average''type''spline');
echo 
$chart->renderChart(''true700350);

?>