Add hash support.
[dygraphs.git] / gallery / gallery.html
CommitLineData
c1f22b5a
RK
1<!DOCTYPE html>
2<html>
3 <head>
4 <meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7; IE=EmulateIE9">
5 <title>Dygraphs Gallery</title>
6 <!--[if IE]>
7 <script type="text/javascript" src="../excanvas.js"></script>
8 <![endif]-->
9
10 <script src="../dygraph-dev.js"></script>
11 <script src="gallery.js"></script>
12 <script src="data.js"></script>
13 <script src='http://www.google.com/jsapi'></script> <!-- required in some cases -->
14
15 <!-- gallery entries. Can these be auto-loaded? -->
16 <script src="annotation.js"></script>
17 <script src="drawing.js"></script>
18 <script src="dynamic-update.js"></script>
19 <script src="highlighted-region.js"></script>
20 <script src="independent-series.js"></script>
21 <script src="plotter.js"></script>
22
23 <!-- These might not remain in the gallery -->
24 <script src="dygraph-simple.js"></script>
25 <script src="demo.js"></script>
26 <script src="border.js"></script>
27 <script src="callback.js"></script>
28 <script src="avoidMinZero.js"></script>
29 <script src="color-cycle.js"></script>
30 <script src="color-visibility.js"></script>
31 <script src="two-axes.js"></script>
32 <script src="number-format.js"></script>
33 <script src="no-range.js"></script>
34 <script src="negative.js"></script>
35 <script src="annotation-gviz.js"></script>
36 <script src="annotation-native.js"></script>
37
38 <link rel="stylesheet" type="text/css" href="gallery.css" />
39 </head>
40 <body>
41 <table>
42 <tr>
43 <td><h2>Gallery</h2></td>
44 <td></td>
45 <td id="title"></td>
46 </tr>
47 <tr>
48 <td id="toc"></td>
49 <td style="width:0.5em;"></td>
50 <td id="rhs">
51 <div id="workarea"></div>
52 </td>
53 </tr>
54 </table>
55 <script type="text/javascript">Gallery.start()</script>
56 </body>
57</html>