-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
59 lines (50 loc) · 1.2 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
58
59
<!DOCTYPE html>
<html >
<head>
<meta charset="UTF-8">
<title>JS Bar Graph Demo</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div class="table-container">
<table id="count-table">
<thead>
<tr>
<th>Category</th>
<th>Count</th>
</tr>
</thead>
<tbody>
<tr>
<td contenteditable='true'>Cat</td>
<td contenteditable='true'>2</td>
</tr>
<tr>
<td contenteditable='true'>Hat</td>
<td contenteditable='true'>3</td>
</tr>
<tr>
<td contenteditable='true'>Bat</td>
<td contenteditable='true'>4</td>
</tr>
<tr>
<td contenteditable='true'>Nat</td>
<td contenteditable='true'>8</td>
</tr>
<tr>
<td contenteditable='true'>Fat</td>
<td contenteditable='true'>12</td>
</tr>
</tbody>
</table>
<div id="main-button" onclick="drawBars()">Go</div>
</div>
<div class="graph-container">
<div class="graph-header">
</div>
<div class="graph-body" id="graph1">
</div>
</div>
<script src="js/index.js"></script>
</body>
</html>