chart = {
const svg = d3.create("svg").attr("viewBox", [0, 0, width, height]);
svg
.append('rect')
.attr('width', width)
.attr('height', height)
.attr('fill', 'black');
svg
.selectAll('circle')
.data(data)
.enter()
.append('circle')
.style('mix-blend-mode', 'screeN')
.style('opacity', 0.9)
.attr('r', d => (distinctChars.indexOf(d) + 1.7) * Math.random() * 1.8)
.attr('fill', d => color[d3.shuffle(distinctChars).indexOf(d)])
.attr('transform', (d, i) => {
let row = Math.floor(i / cols);
let col = i % cols;
return `translate(${col * colWidth + 30},${row * rowHeight + 30})`;
});
return svg.node();
}