| 
<?php 
include_once "../d3.classes.inc.php";
 include_once "../wrappers/stackedbarchart.php";
 ?><!DOCTYPE html>
 <html>
 <head>
 <meta charset="utf-8">
 <style>
 body {
 font: 10px sans-serif;
 }
 
 .axis path,
 .axis line {
 fill: none;
 stroke: #000;
 shape-rendering: crispEdges;
 }
 
 .bar {
 fill: steelblue;
 }
 
 .x.axis path {
 display: none;
 }
 
 </style>
 <?php echo d3::script();?>
 </head>
 <body>
 <script>
 <?php
 $chart = new d3StackedBarChart();
 echo $chart->render();
 ?>
 </script>
 </body>
 </html>
 |