Forked from @mbostock's stacked bar graph example.
-
-
Save jrsconfitto/10156411 to your computer and use it in GitHub Desktop.
7 Wonders scores stacked bar graph
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<title>7 Wonders scores as stacked bars</title> | |
<style type="text/css"> | |
svg { | |
width: 960px; | |
height: 500px; | |
border: solid 1px #ccc; | |
font: 10px sans-serif; | |
shape-rendering: crispEdges; | |
} | |
</style> | |
<script src="http://d3js.org/d3.v3.min.js"></script> | |
<script type="text/javascript"> | |
var w = 960, | |
h = 500, | |
p = [20, 50, 30, 20], | |
x = d3.scale.ordinal().rangeRoundBands([0, w - p[1] - p[3]]), | |
y = d3.scale.linear().range([0, h - p[0] - p[2]]), | |
z = d3.scale.ordinal().range(["lightpink", "darkgray", "lightblue"]), | |
parse = d3.time.format("%m/%Y").parse, | |
format = d3.time.format("%b"); | |
var svg = d3.select("body").append("svg:svg") | |
.attr("width", w) | |
.attr("height", h) | |
.append("svg:g") | |
.attr("transform", "translate(" + p[3] + "," + (h - p[2]) + ")"); | |
d3.json("/jugglingnutcase/raw/9992169/games.json", function(error, data) { | |
if (error) return console.error(error); | |
// Transpose the data into layers by cause. | |
var causes = d3.layout.stack()([].map(function(cause) { | |
return crimea.map(function(d) { | |
return {x: parse(d.date), y: +d[cause]}; | |
}); | |
})); | |
// Compute the x-domain (by date) and y-domain (by top). | |
x.domain(causes[0].map(function(d) { return d.x; })); | |
y.domain([0, d3.max(causes[causes.length - 1], function(d) { return d.y0 + d.y; })]); | |
// Add a group for each cause. | |
var cause = svg.selectAll("g.cause") | |
.data(causes) | |
.enter().append("svg:g") | |
.attr("class", "cause") | |
.style("fill", function(d, i) { return z(i); }) | |
.style("stroke", function(d, i) { return d3.rgb(z(i)).darker(); }); | |
// Add a rect for each date. | |
var rect = cause.selectAll("rect") | |
.data(Object) | |
.enter().append("svg:rect") | |
.attr("x", function(d) { return x(d.x); }) | |
.attr("y", function(d) { return -y(d.y0) - y(d.y); }) | |
.attr("height", function(d) { return y(d.y); }) | |
.attr("width", x.rangeBand()); | |
// Add a label per date. | |
var label = svg.selectAll("text") | |
.data(x.domain()) | |
.enter().append("svg:text") | |
.attr("x", function(d) { return x(d) + x.rangeBand() / 2; }) | |
.attr("y", 6) | |
.attr("text-anchor", "middle") | |
.attr("dy", ".71em") | |
.text(format); | |
// Add y-axis rules. | |
var rule = svg.selectAll("g.rule") | |
.data(y.ticks(5)) | |
.enter().append("svg:g") | |
.attr("class", "rule") | |
.attr("transform", function(d) { return "translate(0," + -y(d) + ")"; }); | |
rule.append("svg:line") | |
.attr("x2", w - p[1] - p[3]) | |
.style("stroke", function(d) { return d ? "#fff" : "#000"; }) | |
.style("stroke-opacity", function(d) { return d ? .7 : null; }); | |
rule.append("svg:text") | |
.attr("x", w - p[1] - p[3] + 6) | |
.attr("dy", ".35em") | |
.text(d3.format(",d")); | |
}); | |
</script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment