Skip to content

Instantly share code, notes, and snippets.

View jamesongamble's full-sized avatar

Jameson Gamble jamesongamble

View GitHub Profile
// start slingin' some d3 here.
var update = function(data) {
var board = d3.select("body").select("svg").selectAll("image.pira")
.data(data)
board.enter().append("image")
.attr("height", function() {
return "50";
})
.attr("width", function() {