Skip to content

Instantly share code, notes, and snippets.

@emeeks
Last active March 18, 2016 15:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save emeeks/03aaed39e048655daad0 to your computer and use it in GitHub Desktop.
Save emeeks/03aaed39e048655daad0 to your computer and use it in GitHub Desktop.
Ch. 2, Fig. 13 - D3.js in Action

This is the code for Chapter 2, Figure 13 from D3.js in Action that creates rectangles with height based on the data bound to the selection. In this case, the rectangles all overlap each other because their X position is the same, which is now apparent because they are rendered semi-transparently.

<html>
<head>
<title>D3 in Action Chapter 2 - Example 2</title>
<meta charset="utf-8" />
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.5/d3.min.js"></script>
</head>
<style>
svg {
height: 500px;
width: 500px;
border: 1px solid gray;
}
</style>
<body>
<div>
<svg>
</svg>
</div>
</body>
<footer>
<script>
d3.select("svg")
.selectAll("rect")
.data([15, 50, 22, 8, 100, 10])
.enter()
.append("rect")
.attr("width", 10)
.attr("height", function(d) {return d})
.style("fill", "blue")
.style("stroke", "red")
.style("stroke-width", "1px")
.style("opacity", .25)
</script>
</footer>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment