forked from mikedewar/d3talk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
list.html
45 lines (45 loc) · 1.25 KB
/
list.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
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN">
<html>
<head>
<script type="text/javascript" src="http://mbostock.github.com/d3/d3.v2.js"></script>
<link type="text/css" rel="stylesheet" href="style.css">
<title></title>
</head>
<body>
<div style="padding-left:1em" id="body">
<div id="header">
<script>
d3.json(
"http://localhost:8000/data/num_topics.json",
function(data){
d3.select("#body")
.append("ul")
.selectAll("li")
.data(data)
.enter()
.append("li")
.text(
function(d){
var msg = d.count
if (d.count == 1) {
msg += " person specifies ";
} else {
msg += " people specify "
}
msg += d.num_topics
if (d.num_topics == 1){
msg += " topic";
} else {
msg += " topics";
}
return msg;
}
)
.style("font-size","1.5em")
}
)
</script>
</div>
</div>
</body>
</html>