<html>
<head>
<meta charset="utf-8">
<title>D3 第一个圆形</title>
<script src="http://d3js.org/d3.v3.min.js" charset="utf-8"></script>
</head>
<body>
</body>
<script>
var svg = d3.select(document.body).append('svg')
.attr('xmlns', 'http://www.w3.org/2000/svg')
.attr('width', 500)
.attr('height', 500);
svg.append("circle")
.attr("cx", 250)
.attr("cy", 250)
.attr("r", 250)
.attr("fill", "#ccc");
</script>
</html>
11-18
1211

10-13
1984

11-06
1589
