-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstack-chart.html
More file actions
41 lines (38 loc) · 818 Bytes
/
stack-chart.html
File metadata and controls
41 lines (38 loc) · 818 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
<!doctype html>
<html class="no-js" lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Stack Chart</title>
<link rel="stylesheet" href="css/foundation.css" />
</head>
<style>
svg {
margin-left: auto;
margin-right: auto;
}
* {
text-align: center;
}
.axis text {
font: 10px sans-serif;
}
.axis path,
.axis line {
fill: none;
stroke: #000;
shape-rendering: crispEdges;
}
</style>
<script src="js/vendor/modernizr.js"></script>
<script src="js/d3.min.js"></script>
</head>
<body>
<div class="row">
<div class="large-4 large-centered columns">
<h1>Stack Chart</h1>
</div>
</div>
<script src="js/stack-chart.js"></script>
</body>
</html>