xxxxxxxxxx
<meta charset="utf-8">
<style>
rect {
fill: steelblue;
}
text {
font: 300 48px "Helvetica Neue";
}
</style>
<body>
<script src="//d3js.org/d3.v3.min.js"></script>
<script>
var svg = d3.select("body").append("svg")
.attr("width", 960)
.attr("height", 500);
svg.append("text")
.attr("x", 480)
.attr("y", 250)
.attr("text-anchor", "middle")
.attr("dy", ".35em")
.text("TEST FAILED");
svg.selectAll("rect")
.data(d3.range(1920))
.enter().append("rect")
.attr("x", function(d) { return d / 2; })
.attr("width", .5)
.attr("height", 500);
</script>
https://d3js.org/d3.v3.min.js