Skip to content

Instantly share code, notes, and snippets.

@aaronbalthaser
Last active October 27, 2017 00:33
Show Gist options
  • Save aaronbalthaser/56476bb5a5bb8632b676048f62283f6e to your computer and use it in GitHub Desktop.
Save aaronbalthaser/56476bb5a5bb8632b676048f62283f6e to your computer and use it in GitHub Desktop.
fresh block
license: mit
<!DOCTYPE html>
<svg>
<rect />
<rect />
<rect />
<rect />
<rect />
</svg>
<body>
<script>
var data = [100, 250, 175, 200, 120];
d3.selectAll('rect')
console.log(d3.selectAll('rect'));
// .data(data)
// .attr('x', (d, i) => i * rectWid)
// .attr('y', d => height - d)
// .attr('width', rectWidth)
// .attr('height', d => d)
// .attr('fill', 'blue')
// .attr('stroke', '#fff')
</script>
</body>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment