-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsunburst.html
37 lines (30 loc) · 1.24 KB
/
sunburst.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
<!DOCTYPE html>
<html>
<head>
<title>Sunburst chart for surnames</title>
<script src="//d3js.org/d3.v3.min.js"></script>
<!-- contains hierarchy (and partition) -->
<!-- <script src="//d3js.org/d3.v7.js"></script> -->
<!-- <script src="//d3js.org/d3.v7.min.js"></script> -->
<link rel="stylesheet" type="text/css" href="css/jasondavies_style.css">
<link rel="stylesheet" type="text/css" href="css/sunburst.css">
</head>
<body class="nested_body">
<h2>Surnames Sunburst chart</h2>
<div class="info">
<div>
<span>My Facebook profile -
<a target="_blank" href="https://www.facebook.com/andrii.lundiak">Andrii Lundiak</a>
</span>
</div>
<div>My blog - <a target="_blank" href="https://lundiak.wordpress.com/">LUND-IA-K</a></div>
<div>My github - <a href="https://alundiak.github.io/gen-and-gen">Gen&Gen</a> project</div>
</div>
<div class="surnames_sunburst">
<div id="vis"></div>
</div>
<script type="text/javascript" src="js/jasondavies_app.min.js"></script>
<!-- <script type="text/javascript" src="js/sunburst.js"></script> -->
<!-- <script type="application/javascript" src="js/sunburst.js"></script> -->
</body>
</html>