-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
31 lines (28 loc) · 893 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>dc.js - Composite of a Bar and a Line Chart</title>
<meta charset="UTF-8">
<link rel="stylesheet" type="text/css" href="./css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="./css/dc.min.css"/>
<style>
#chartTitle{
text-align: center;
font-size: large;
}
.chartContainer{
width:768px;
height:350px;
}
</style>
</head>
<body>
<div class="container chartContainer">
<div id="chartTitle">Municipalities ordered by total area of deforestation alerts (DETER) in all time</div>
</div>
<script type="text/javascript" src="./js/d3.min.js"></script>
<script type="text/javascript" src="./js/crossfilter.min.js"></script>
<script type="text/javascript" src="./js/dc.min.js"></script>
<script type="text/javascript" src="./js/index.js"></script>
</body>
</html>