Last active
June 2, 2016 09:58
-
-
Save mvuksano/c39f3563554e48b788a1e15105d6f799 to your computer and use it in GitHub Desktop.
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
var svg = d3.select('svg') | |
.attr('width', canvas_width); | |
svg.selectAll('rect') | |
.data(d3.entries(population)) | |
.enter() | |
.append('rect') | |
.attr('y', function(d, i) { | |
return 40*i + 10; | |
}) | |
.attr('x', 0) | |
.attr('height', bar_height) | |
.attr('width', function(d, i) { | |
return d.value; | |
}) | |
.attr('fill', 'turquoise'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment