-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
33 lines (32 loc) · 741 Bytes
/
index.html
File metadata and controls
33 lines (32 loc) · 741 Bytes
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
<html>
<head>
<title>D3 Lab</title>
<script src="jQuery/dist/jquery.min.js"></script>
<script src="d3/d3.min.js" charset = "utf-8"></script>
<script type="text/javascript" src="script.js"></script>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<h4 id="hovered">chevrolet chevelle malibu</h4>
<div class="plot">
<svg></svg>
</div>
<br/>
<br/>
<div class="ui">
<div>
<label>X-Axis</label>
<select id="sel-x">
</select>
<label>Y-Axis</label>
<select id="sel-y">
</select>
</div>
<div>
<input id="mpg-min" type="text" value="0" size="10">
<input id="mpg-max" type="text" value="30" size="10">
<button id="update">Query MPG</button>
</div>
</div>
</body>
</html>