{
const svgHTML = html `<svg height="300" width="300" style="border: 1px solid #ccc" />`
const svg = d3.select(svgHTML)
const circles = svg.selectAll('circle')
const data = [ 0, 4, 6, 8, 10 ]
circles
.data( data )
.join('circle')
.style('fill', 'red')
.attr('cx', 20)
.attr('cy', 20)
.attr('r', 10)
.attr('cy', (d,i) => { return 20 + (d * 30) })
.attr('cx', (d,i) => { return 20 + (d * 30) })
return svgHTML
}