Merge branch 'master' of https://github.com/kberg/dygraphs into new-series-option
[dygraphs.git] / tests / isolated-points.html
CommitLineData
54425b14 1<!DOCTYPE html>
9317362d
DV
2<html>
3 <head>
10494b48 4 <meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7; IE=EmulateIE9">
9317362d
DV
5 <title>isolated points</title>
6 <!--[if IE]>
a2b2c3a1 7 <script type="text/javascript" src="../excanvas.js"></script>
9317362d 8 <![endif]-->
7e5ddc94
DV
9 <!--
10 For production (minified) code, use:
11 <script type="text/javascript" src="dygraph-combined.js"></script>
12 -->
13 <script type="text/javascript" src="../dygraph-dev.js"></script>
14
9317362d
DV
15 </head>
16 <body>
17 <div id="graph"></div>
18 <script type="text/javascript">
f6fbf9e0 19 var g = new Dygraph(
9317362d
DV
20 document.getElementById("graph"),
21 [
22 [ 1, 10, 11],
23 [ 2, 15, null],
24 [ 3, null, null],
25 [ 4, 20, 13],
26 [ 5, null, 10],
27 [ 6, 18, null],
28 [ 7, 12, 16]
29 ],
30 {
31 labels: ["X", "S1", "S2" ],
19b84fe7 32 S1: {
a5a50727 33 drawGapEdgePoints: true
19b84fe7
KW
34 },
35 pointSize: 4,
9317362d
DV
36 showRoller: true
37 }
38 );
39 </script>
40 </body>
41</html>