-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstate_inds.html
More file actions
47 lines (38 loc) · 947 Bytes
/
state_inds.html
File metadata and controls
47 lines (38 loc) · 947 Bytes
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>
<!--
modified from: https://github.com/curran/screencasts/blob/gh-pages/splittingCharts/examples/code/snapshot39/index.html
-->
<html>
<head>
<meta charset="utf-8">
<title>Rankings</title>
<link href='https://fonts.googleapis.com/css?family=Open+Sans' rel='stylesheet' type='text/css'>
<style>
.chart-line {
fill: none;
stroke-width: 1px;
}
.axis text {
font-family: 'Open Sans', sans-serif;
font-size: 12pt;
}
.axis .label {
font-size: 18pt;
}
.axis path, .axis line {
fill: none;
stroke: #000;
shape-rendering: crispEdges;
}
.color-legend text {
font-family: 'Open Sans', sans-serif;
font-size: 12pt;
}
</style>
</head>
<body>
<script src ="indesty_rank_bars.js"></script>
<script>
</script>
</body>
</html>