2.0.0 release fixes (#815)
[dygraphs.git] / tests / isolated-points.html
CommitLineData
54425b14 1<!DOCTYPE html>
9317362d
DV
2<html>
3 <head>
fd6b8dad 4 <link rel="stylesheet" href="../dist/dygraph.css">
9317362d 5 <title>isolated points</title>
fbd6834a 6 <script type="text/javascript" src="../dist/dygraph.js"></script>
7e5ddc94 7
9317362d
DV
8 </head>
9 <body>
10 <div id="graph"></div>
11 <script type="text/javascript">
f6fbf9e0 12 var g = new Dygraph(
9317362d
DV
13 document.getElementById("graph"),
14 [
15 [ 1, 10, 11],
16 [ 2, 15, null],
17 [ 3, null, null],
18 [ 4, 20, 13],
19 [ 5, null, 10],
20 [ 6, 18, null],
21 [ 7, 12, 16]
22 ],
23 {
24 labels: ["X", "S1", "S2" ],
30abcfb6
RK
25 series: {
26 S1: {
27 drawGapEdgePoints: true
28 }
19b84fe7
KW
29 },
30 pointSize: 4,
9317362d
DV
31 showRoller: true
32 }
33 );
34 </script>
35 </body>
36</html>