-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
47 lines (32 loc) · 936 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
<meta charset="utf-8">
<style type="text/css">
svg {
font: 12px sans-serif;
shape-rendering: crispEdges;
}
.axis path,
.axis line {
fill: none;
stroke: #000;
}
path.domain {
stroke: none;
}
.y .tick line {
stroke: #ddd;
}
</style>
<title>Vis 2</title>
</head>
<body class="d-flex">
</body>
<!-- Load d3.js -->
<!--<script src="http://d3js.org/d3.v4.js"></script>-->
<script src="https://d3js.org/d3.v3.min.js" charset="utf-8"></script>
<!-- Load view scripts -->
<script src="app.js"></script>
</html>