4 <meta http-equiv=
"X-UA-Compatible" content=
"IE=EmulateIE7; IE=EmulateIE9">
5 <title>interaction model
</title>
7 <script type=
"text/javascript" src=
"../excanvas.js"></script>
9 <script type=
"text/javascript" src=
"../strftime/strftime-min.js"></script>
10 <script type=
"text/javascript" src=
"../rgbcolor/rgbcolor.js"></script>
11 <script type=
"text/javascript" src=
"../dygraph-canvas.js"></script>
12 <script type=
"text/javascript" src=
"../dygraph.js"></script>
13 <script type=
"text/javascript" src=
"data.js"></script>
14 <script type=
"text/javascript" src=
"interaction.js"></script>
19 <b>Default interaction model
</b>
20 <div id=
"div_g" style=
"width:600px; height:300px;"></div>
21 </td><td>Zoom: click-drag
<br/>Pan: shift-click-drag
<br/>Restore zoom level: double-click
<br/>
24 <b>No interaction model
</b>
25 <div id=
"div_g2" style=
"width:600px; height:300px;"></div>
26 </td><td>Click and drag all you like, it won't do anything!
</td></tr>
28 <b>Custom interaction model
</b>
30 <input type=
"button" value=
"Restore position" onclick=
"restorePositioning(g3)">
31 <div id=
"div_g3" style=
"width:600px; height:300px;"></div>
33 Zoom in: double-click, scroll wheel
<br/>
34 Zoom out: ctrl-double-click, scroll wheel
<br/>
35 Standard Zoom: shift-click-drag
36 Standard Pan: click-drag
<br/>
37 Restore zoom level: press button
<br/>
41 <div id=
"div_g4" style=
"width:600px; height:300px;"></div>
43 Keep the mouse button pressed, and hover over all points
49 <script type=
"text/javascript">
50 Dygraph.addEvent(document,
"mousewheel", function() { lastClickedGraph = null; });
51 Dygraph.addEvent(document,
"click", function() { lastClickedGraph = null; });
52 var g = new Dygraph(document.getElementById(
"div_g"),
53 NoisyData, { errorBars : true });
54 var g2 = new Dygraph(document.getElementById(
"div_g2"),
55 NoisyData, { errorBars : true, interactionModel : {} });
56 var g3 = new Dygraph(document.getElementById(
"div_g3"),
57 NoisyData, { errorBars : true, interactionModel : {
62 'dblclick' : dblClickV3,
63 'mousewheel' : scrollV3
65 var g4 = new Dygraph(document.getElementById(
"div_g4"),
66 NoisyData, { errorBars : true, drawPoints : true, interactionModel : {
70 'dblclick' : dblClickV4,
72 underlayCallback : captureCanvas