forked from CodeForPhilly/schoolbudget.phl.io
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathtreemap.html
More file actions
19 lines (19 loc) · 748 Bytes
/
treemap.html
File metadata and controls
19 lines (19 loc) · 748 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" href="css/treemap.css">
</head>
<body>
<form>
Funding Source:
<label><input type="radio" name="mode" value="total" checked> Total</label>
<label><input type="radio" name="mode" value="operating"> Operating</label>
<label><input type="radio" name="mode" value="grant"> Grant</label>
<label><input type="radio" name="mode" value="capital"> Capital</label>
<label><input type="radio" name="mode" value="other"> Other</label>
</form>
<script src="js/d3.min.js"></script>
<script src="js/treemap.js"></script>
</body>
</html>