-
Notifications
You must be signed in to change notification settings - Fork 0
/
proj_630.html
57 lines (57 loc) · 1.17 KB
/
proj_630.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>
<!-- TODO: solve the error "Use of getPreventDefault() is deprecated. Use defaultPrevented instead." -->
<html>
<head>
<meta charset="UTF-8"/>
<style>
.axis {
font: 10px sans-serif;
}
.axis path,
.axis line {
fill: none;
stroke: #000;
shape-rendering: crispEdges;
}
</style>
<script src="d3.v3.js"></script>
</head>
<body>
<table>
<tr>
<td width="800" height="750">
<div id="heatmap">
</div>
</td>
<td>
<table>
<tr>
<td width="480" height="180">
<div id="query_text">
</div>
</td>
</tr>
<tr>
<td width="480" height="100">
<div id="current_idx">
</div>
</td>
</tr>
<tr>
<td width="480" height="100">
<div id="columns_used">
</div>
</td>
</tr>
<tr>
<td width="480" height="100">
<div id="err_msg">
</div>
</td>
</tr>
</td>
</tr>
</table>
<script src="d3js_simple07.js"></script>
</body>
</html>