index.html (3462B)
1 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.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="examples.css" rel="stylesheet" type="text/css"> 7 <style> 8 9 h3 { 10 margin-top: 30px; 11 margin-bottom: 5px; 12 } 13 14 </style> 15 <script language="javascript" type="text/javascript" src="../jquery.js"></script> 16 <script language="javascript" type="text/javascript" src="../jquery.flot.js"></script> 17 <script type="text/javascript"> 18 19 $(function() { 20 21 // Add the Flot version string to the footer 22 23 $("#footer").prepend("Flot " + $.plot.version + " – "); 24 }); 25 26 </script> 27 </head> 28 <body> 29 30 <div id="header"> 31 <h2>Flot Examples</h2> 32 </div> 33 34 <div id="content"> 35 36 <p>Here are some examples for <a href="http://www.flotcharts.org">Flot</a>, the Javascript charting library for jQuery:</p> 37 38 <h3>Basic Usage</h3> 39 40 <ul> 41 <li><a href="basic-usage/index.html">Basic example</a></li> 42 <li><a href="series-types/index.html">Different graph types</a> and <a href="categories/index.html">simple categories/textual data</a></li> 43 <li><a href="basic-options/index.html">Setting various options</a> and <a href="annotating/index.html">annotating a chart</a></li> 44 <li><a href="ajax/index.html">Updating graphs with AJAX</a> and <a href="realtime/index.html">real-time updates</a></li> 45 </ul> 46 47 <h3>Interactivity</h3> 48 49 <ul> 50 <li><a href="series-toggle/index.html">Turning series on/off</a></li> 51 <li><a href="selection/index.html">Rectangular selection support and zooming</a> and <a href="zooming/index.html">zooming with overview</a> (both with selection plugin)</li> 52 <li><a href="interacting/index.html">Interacting with the data points</a></li> 53 <li><a href="navigate/index.html">Panning and zooming</a> (with navigation plugin)</li> 54 <li><a href="resize/index.html">Automatically redraw when window is resized</a> (with resize plugin)</li> 55 </ul> 56 57 <h3>Additional Features</h3> 58 59 <ul> 60 <li><a href="symbols/index.html">Using other symbols than circles for points</a> (with symbol plugin)</li> 61 <li><a href="axes-time/index.html">Plotting time series</a>, <a href="visitors/index.html">visitors per day with zooming and weekends</a> (with selection plugin) and <a href="axes-time-zones/index.html">time zone support</a></li> 62 <li><a href="axes-multiple/index.html">Multiple axes</a> and <a href="axes-interacting/index.html">interacting with the axes</a></li> 63 <li><a href="threshold/index.html">Thresholding the data</a> (with threshold plugin)</li> 64 <li><a href="stacking/index.html">Stacked charts</a> (with stacking plugin)</li> 65 <li><a href="percentiles/index.html">Using filled areas to plot percentiles</a> (with fillbetween plugin)</li> 66 <li><a href="tracking/index.html">Tracking curves with crosshair</a> (with crosshair plugin)</li> 67 <li><a href="image/index.html">Plotting prerendered images</a> (with image plugin)</li> 68 <li><a href="series-errorbars/index.html">Plotting error bars</a> (with errorbars plugin)</li> 69 <li><a href="series-pie/index.html">Pie charts</a> (with pie plugin)</li> 70 <li><a href="canvas/index.html">Rendering text with canvas instead of HTML</a> (with canvas plugin)</li> 71 </ul> 72 73 </div> 74 75 <div id="footer"> 76 Copyright © 2007 - 2013 IOLA and Ole Laursen 77 </div> 78 79 </body> 80 </html>