PHP/JavaScript webapp to analyse spending habits
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

index.html 2.2KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
  2. <html>
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  5. <title>Flot Examples</title>
  6. <link href="layout.css" rel="stylesheet" type="text/css"></link>
  7. <!--[if IE]><script language="javascript" type="text/javascript" src="../excanvas.min.js"></script><![endif]-->
  8. <script language="javascript" type="text/javascript" src="../jquery.js"></script>
  9. <script language="javascript" type="text/javascript" src="../jquery.flot.js"></script>
  10. </head>
  11. <body>
  12. <h1>Flot Examples</h1>
  13. <p>Here are some examples for <a href="http://code.google.com/p/flot/">Flot</a>, the Javascript charting library for jQuery:</p>
  14. <ul>
  15. <li><a href="basic.html">Basic example</a></li>
  16. <li><a href="graph-types.html">Different graph types</a></li>
  17. <li><a href="setting-options.html">Setting various options</a> and <a href="annotating.html">annotating a chart</a></li>
  18. <li><a href="ajax.html">Updating graphs with AJAX</a></li>
  19. </ul>
  20. <p>Being interactive:</p>
  21. <ul>
  22. <li><a href="turning-series.html">Turning series on/off</a></li>
  23. <li><a href="selection.html">Rectangular selection support and zooming</a> and <a href="zooming.html">zooming with overview</a></li> (both with selection plugin)
  24. <li><a href="interacting.html">Interacting with the data points</a></li>
  25. <li><a href="navigate.html">Panning and zooming</a> (with navigation plugin)</li>
  26. </ul>
  27. <p>Some more esoteric features:</p>
  28. <ul>
  29. <li><a href="time.html">Plotting time series</a> and <a href="visitors.html">visitors per day with zooming and weekends</a> (with selection plugin)</li>
  30. <li><a href="dual-axis.html">Dual axis support</a></li>
  31. <li><a href="thresholding.html">Thresholding the data</a> (with threshold plugin)</li>
  32. <li><a href="stacking.html">Stacked charts</a> (with stacking plugin)</li>
  33. <li><a href="tracking.html">Tracking curves with crosshair</a> (with crosshair plugin)</li>
  34. <li><a href="image.html">Plotting prerendered images</a> (with image plugin)</li>
  35. </ul>
  36. </body>
  37. </html>