index.html 752 B

12345678910111213141516171819202122
  1. <!DOCTYPE html>
  2. <head>
  3. <title>Flot Stacked and Ordered Bar Chart Examples</title>
  4. </head>
  5. <body>
  6. <h2>Stacked Bar Chart</h2>
  7. <div id="stacked-chart" style="width:600px;height:300px;"></div>
  8. <h2>Ordered Bar Chart</h2>
  9. <div id="ordered-chart" style="width:600px;height:300px;"></div>
  10. <h2>Stacked &amp; Ordered Bar Chart</h2>
  11. <div id="stacked-ordered-chart" style="width:600px;height:300px;"></div>
  12. <script src="js/vendor/jquery-1.9.1.min.js"></script>
  13. <script src="js/flot/flot.js"></script>
  14. <script src="../js/jquery.flot.orderBars.js"></script>
  15. <script src="js/flot/stack.js"></script>
  16. <script src="js/main.js"></script>
  17. </body>
  18. </html>