-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
40 lines (36 loc) · 1.03 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>d3 charts</title>
<style>
.bar{
height: 30px;
fill: lightblue;
}
.on{
fill: blue;
}
</style>
</head>
<body>
<div id="chart8"></div>
<div id="chart7"></div>
<div id="chart6"></div>
<div id="chart5"></div>
<div id="chart4"></div>
<div id="chart3"></div>
<div id="chart2"></div>
<div id="chart1"></div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3/4.4.0/d3.js"></script>
<script src="utils.js"></script>
<script src="index1.js"></script>
<script src="index2.js"></script>
<script src="index3.js"></script>
<script src="index4.js"></script>
<script src="index5.js"></script>
<script src="index6.js"></script>
<script src="index7.js"></script>
<script src="index8.js"></script>
</body>
</html>