fluent interface example
by dmitrybezb
CSS
body {
margin: 0;
height: 100%;
}
svg {
width: 100%;
height: 100%;
}
JavaScript
d3.select('body')
.append('svg')
.append('text')
.text('Click somewhere, please...')
.attr('x', 50)
.attr('y', 50)
.style("fill","firebrick");