The jqChart...
<?php 
require_once '../../../tabs.php';
?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
  <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    <title>Highcharts Example</title>

    <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>
    <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");


$chart = new jqChart();
$chart->setChartOptions(array("zoomType"=>"xy"))
->
setTitle(array('text'=>'Average Monthly Weather Data for Tokyo'))
->
setSubtitle(array('text'=>'Source: WorldClimate.com'))
->
setxAxis(array(
    
"categories"=>array('Jan''Feb''Mar''Apr''May''Jun''Jul''Aug''Sep''Oct''Nov''Dec')
))
->
setyAxis(array(
    array( 
        
"labels"=>array(
            
"formatter"=>"js:function(){return this.value +'C';}",
            
"style"=>array("color"=>'#89A54E')
        ),
        
"title"=>array(
            
'text'=> 'Temperature',
            
"style"=>array("color"=>'#89A54E')
        ),
        
"opposite"=> true
    
),
    array( 
        
"title"=>array(
            
'text'=> 'Rainfall',
            
"style"=>array("color"=>'#4572A7')
        ),
        
"labels"=>array(
            
"formatter"=>"js:function(){return this.value +'mm';}",
            
"style"=>array("color"=>'#4572A7')
        ),
    ),
    array(
        
"labels"=>array(
            
"formatter"=>"js:function(){return this.value +'mb';}",
            
"style"=>array("color"=>'#AA4643')
        ),
        
"title"=>array(
            
'text'=> 'Sea-Level Pressure',
            
"style"=>array("color"=>'#AA4643')
        ),
        
"opposite"=> true
    
),
))
->
setTooltip(array("formatter"=>"function(){
    var unit = {
        'Rainfall': 'mm',
        'Temperature': 'C',
        'Sea-Level Pressure': 'mb'
    }[this.series.name];
    return ''+    this.x +': '+ this.y +' '+ unit;
    }"
))
->
setLegend(array(
    
"layout"=> 'vertical',
    
"align"=> 'left',
    
"x"=> 120,
    
"y"=> 80,
    
"verticalAlign"=> 'top',
    
"floating"=> true,
    
"backgroundColor"=> '#FFFFFF'
))
->
addSeries('Rainfall', array(49.971.5106.4129.2144.0176.0135.6148.5216.4194.195.654.4))
->
setSeriesOption('Rainfall',array('type'=>'column'"color"=>'#4572A7',"yAxis"=>1))
->
addSeries('Sea-Level Pressure', array(101610161015.91015.51012.31009.51009.61010.21013.11016.91018.21016.7))
->
setSeriesOption('Sea-Level Pressure',array(
    
'type'=>'spline',
    
"color"=>'#AA4643',
    
"yAxis"=>2,
    
"dashStyle"=> 'shortdot',
    
"marker"=>array("enabled" =>false)
))
->
addSeries('Temperature', array(7.06.99.514.518.221.525.226.523.318.313.99.6))
->
setSeriesOption('Temperature',array('type'=>'spline'"color"=>'#89A54E'));
echo 
$chart->renderChart(''true700350);

?>