-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
47 lines (43 loc) · 1.23 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
<!DOCTYPE html>
<meta charset="utf-8">
<head>
<link rel="stylesheet" href="d3-rose-chart.css" type="text/css"/>
<style type="text/css">
.d3-tip {
line-height: 1;
font-weight: bold;
padding: 12px;
background: rgba(0, 0, 0, 0.8);
color: #fff;
border-radius: 2px;
}
/* Creates a small triangle extender for the tooltip */
/*.d3-tip:after {*/
/*box-sizing: border-box;*/
/*display: inline;*/
/*font-size: 10px;*/
/*width: 100%;*/
/*line-height: 1;*/
/*color: rgba(0, 0, 0, 0.8);*/
/*content: "\25BC";*/
/*position: absolute;*/
/*text-align: center;*/
/*}*/
/* Style northward tooltips differently */
/*.d3-tip.n:after {*/
/*margin: -1px 0 0 0;*/
/*top: 100%;*/
/*left: 0;*/
/*}*/
</style>
</head>
<body>
<script src="lodash.js"></script>
<script src="d3.v3.js"></script>
<script src="d3-tip.js"></script>
<script src="d3.legend.js"></script>
<script src="colorbrewer.v1.min.js"></script>
<script src="d3-rose-chart_genesort.js"></script>
<div id="legend">
</div>
</body>