4 <title>synchronize
</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>
10 <script type=
"text/javascript" src=
"../extras/synchronizer.js"></script>
12 <script type=
"text/javascript" src=
"data.js"></script>
14 .chart { width:
500px; height:
300px; }
15 .chart-container { overflow: hidden; }
16 #div1 { float: left; }
17 #div2 { float: left; }
18 #div3 { float: left; clear: left; }
19 #div4 { float: left; }
23 <p>Zooming and panning on any of the charts will zoom and pan all the
24 others. Selecting points on one will select points on the others.
</p>
26 <p>To use this, source
<a href=
"https://github.com/danvk/dygraphs/blob/master/extras/synchronizer.js"><code>extras/synchronizer.js
</code></a> on your page.
27 See the comments in that file for usage.
</p>
29 <div class=
"chart-container">
30 <div id=
"div1" class=
"chart"></div>
31 <div id=
"div2" class=
"chart"></div>
32 <div id=
"div3" class=
"chart"></div>
33 <div id=
"div4" class=
"chart"></div>
38 <input type=checkbox id='chk-zoom' checked onChange='update()'
><label for='chk-zoom'
> Zoom
</label>
39 <input type=checkbox id='chk-selection' checked onChange='update()'
><label for='chk-selection'
> Selection
</label>
42 <script type=
"text/javascript">
44 var blockRedraw = false;
45 for (var i =
1; i <=
4; i++) {
48 document.getElementById(
"div" + i),
56 var sync = Dygraph.synchronize(gs);
59 var zoom = document.getElementById('chk-zoom').checked;
60 var selection = document.getElementById('chk-selection').checked;
62 sync = Dygraph.synchronize(gs, {