4 <title>interaction model
</title>
6 For production (minified) code, use:
7 <script type=
"text/javascript" src=
"dygraph-combined.js"></script>
9 <script type=
"text/javascript" src=
"../dygraph-dev.js"></script>
11 <script type=
"text/javascript" src=
"data.js"></script>
12 <script type=
"text/javascript" src=
"interaction.js"></script>
17 <b>Default interaction model
</b>
18 <div id=
"div_g" style=
"width:600px; height:300px;"></div>
19 </td><td>Zoom: click-drag
<br/>Pan: shift-click-drag
<br/>Restore zoom level: double-click
<br/>
22 <b>No interaction model
</b>
23 <div id=
"div_g2" style=
"width:600px; height:300px;"></div>
24 </td><td>Click and drag all you like, it won't do anything!
25 <div id=
"g2_console"></div>
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 s = document.getElementById(
"g2_console");
55 var g2 = new Dygraph(document.getElementById(
"div_g2"),
61 var g3 = new Dygraph(document.getElementById(
"div_g3"),
62 NoisyData, { errorBars : true, interactionModel : {
67 'dblclick' : dblClickV3,
68 'mousewheel' : scrollV3
70 var g4 = new Dygraph(document.getElementById(
"div_g4"),
71 NoisyData, { errorBars : true, drawPoints : true, interactionModel : {
75 'dblclick' : dblClickV4,
77 underlayCallback : captureCanvas