Built with blockbuilder.org
xxxxxxxxxx
<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>
<svg style="overflow: visible;"></svg>
<script>
var data = [100,250,175, 200,20];
var height = 300;
var width = 50;
var svg = d3.select('svg');
var rect = svg.selectAll('rect')
.style('overflow', 'visible')
.data(data)
.enter()
.append('rect')
.attr('x', (d, i) => i*width)
.attr('y', d => height-d)
.attr('width', width)
.attr('height', d => d)
.attr('fill', '#00f')
.attr('stroke', '#fff');
console.log(rect);
</script>
</body>
https://d3js.org/d3.v4.min.js