-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathindex.html
57 lines (48 loc) · 2.93 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<!DOCTYPE html>
<html lang="en">
<head>
<title>Dygraphs - Dynamic Zooming Examples</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
</head>
<body>
<div class="container">
<div class="row">
<div class="col-md-12">
<h2>Dygraphs Dynamic Zooming</h2>
<p>Examples demonstrating how to dynamically load down-sampled data, while zooming and panning, without modifying dygraphs.</p>
<h3>Demos and Notes</h3>
<ul>
<li><strong><a href="example1.html">Example 1</a></strong> - Loading down-sampled data while zooming, without modifying dygraphs</li>
<li><strong><a href="example2.html">Example 2</a></strong> - Similar to example 1, but also has selectable range</li>
<li><strong><a href="example3.html">Example 3</a></strong> - Workaround for pan interaction handling</li>
<li><strong><a href="example4.html">Example 4</a></strong> - Same as example 3, but verifies with multiple graphs</li>
<li><strong><a href="example5.html">Example 5</a></strong> - More complex example showing multiple independent series & 2nd y-axis</li>
<li><strong><a href="example6.html">Example 6</a></strong> - Shows the technique is compatible with live continuous data</li>
<li><strong><a href="example7.html">Example 7</a></strong> - Same as example 3, but shows with annotations</li>
</ul>
</p>
<h3>Screenshot</h3>
<a href="https://kaliatech.github.io/dygraphs-dynamiczooming-example/example5.html">
<img src="i/scrshot-ex5.png?raw=true" width="745" height="366" alt="Screenshot from example #5" style_tmp="border:1px solid gray" class="img-thumbnail"/>
</a>
<p>Screenshot is from <a href="https://kaliatech.github.io/dygraphs-dynamiczooming-example/example5.html">example #5</a></p>
<h3>Github Repository</h3>
<ul>
<li><a href="https://github.com/kaliatech/dygraphs-dynamiczooming-example">https://github.com/kaliatech/dygraphs-dynamiczooming-example</a></li>
</ul>
</div>
</div>
</div>
<script src="//code.jquery.com/jquery-3.1.1.min.js"></script>
<script src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-8344371-7', 'auto');
ga('send', 'pageview');
</script>
</body>
</html>