Skip to content

Instantly share code, notes, and snippets.

@curiousYi
Last active August 31, 2018 02:26
Show Gist options
  • Save curiousYi/4f29d90af93d81a438ee5795887aedbe to your computer and use it in GitHub Desktop.
Save curiousYi/4f29d90af93d81a438ee5795887aedbe to your computer and use it in GitHub Desktop.
fresh block
license: mit
<!DOCTYPE html>
<head>
<meta charset="utf-8">
<script src="https://d3js.org/d3.v4.min.js"></script>
<style>
body { margin:0;position:fixed;top:0;right:0;bottom:0;left:0; }
</style>
</head>
<body>
<script>
var data = [100, 200, 300, 400, 500],
rectWidth = 50,
height = 500;
var svg = d3.select("body").append("svg")
.attr("width", 960)
.attr("height", 500);
svg.selectAll('rect')
.data(data)
.enter().append("rect")
.attr('x', (d, i) => {
console.log(`x${i}}`)
return i * rectWidth})
.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