-
Notifications
You must be signed in to change notification settings - Fork 6
/
example.html
32 lines (29 loc) · 1.27 KB
/
example.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
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Flot Examples: Cursors</title>
<link href="example.css" rel="stylesheet" type="text/css">
<script language="javascript" type="text/javascript" src="jquery.js"></script>
<script language="javascript" type="text/javascript" src="jquery.flot.js"></script>
<script language="javascript" type="text/javascript" src="jquery.flot.symbol.js"></script>
<script language="javascript" type="text/javascript" src="jquery.flot.cursors.js"></script>
<script type="text/javascript" type="text/javascript" src="example.js"></script>
</head>
<body>
<div id="header">
<h2>Flot cursors</h2>
</div>
<div id="content">
<div class="demo-container">
<div id="placeholder" class="demo-placeholder"></div>
</div>
<p>
<input id="checkbox" type="checkbox" name="Dynamic data" value="0" checked>Dynamic chart data
</p>
<p>You can add cursors that will track data.</p>
<p>If you combine it with listening cursor updates, you can use it to display the data.</p>
<p id="hoverdata"></p>
</div>
</body>
</html>