Stop including dygraph-combined.js in tests
[dygraphs.git] / tests / spacing.html
CommitLineData
fd2a2ee2
DV
1<html>
2 <head>
3 <title>spacing</title>
4 <!--[if IE]>
5 <script type="text/javascript" src="excanvas.js"></script>
6 <![endif]-->
d37dca40
DV
7 <script type="text/javascript" src="../strftime/strftime-min.js"></script>
8 <script type="text/javascript" src="../rgbcolor/rgbcolor.js"></script>
285a6bda 9 <script type="text/javascript" src="../dygraph-canvas.js"></script>
fd2a2ee2
DV
10 <script type="text/javascript" src="../dygraph.js"></script>
11 <script type="text/javascript" src="data.js"></script>
12 </head>
13 <body>
14 <p>Wide</p>
d16579a0 15 <div id="div_g" style="width:800px; height:300px;"></div>
fd2a2ee2
DV
16
17 <p>Narrow</p>
d16579a0 18 <div id="div_g2" style="width:300px; height:200px;"></div>
fd2a2ee2
DV
19
20 <script type="text/javascript">
285a6bda 21 g = new Dygraph(
d16579a0 22 document.getElementById("div_g"),
285a6bda 23 data, {
32988383 24 rollPeriod: 7,
5cb20998 25 pixelsPerYLabel: 20
fd2a2ee2
DV
26 }
27 );
285a6bda 28 g2 = new Dygraph(
d16579a0 29 document.getElementById("div_g2"),
285a6bda 30 data, {
fd2a2ee2 31 rollPeriod: 7,
5cb20998 32 pixelsPerYLabel: 20
fd2a2ee2
DV
33 }
34 );
35 </script>
36 </body>
37</html>