{
const svg = d3.create('svg')
.attr('width', 500)
.attr('height', 300);
const rows = svg.selectAll('g')
.data(circleGrid)
.join('g')
.attr('transform', row => `translate(0,${row.y})`)
.attr('fill', row => row.color);
rows.append('text')
.attr('font-family', 'sans-serif')
.attr('y', -30)
.text(d => d.label)
rows.selectAll('circle')
.data(row => row.circles)
.join('circle')
.attr('fill', circ => circ.color)
.attr('cx', circ => circ.x)
.attr('r', circ => circ.radius);
return svg.node();
}