Export Code
Connected
vizData.js
// separate data from viz!

export const vizData = (selection, data, colors) => {
// get svg width and height
const width = selection.attr('width')
const height = selection.attr('height')
// make circles
selection
.selectAll('circle')
.data(data)
.join('circle')
.attr('r', (d) => d.r)
.attr('cx', (d) => d.x)
.attr('cy', (d) => d.y)
.attr('stroke-width', (d) => d.r)
.attr('stroke', (d) => colors(d.r));
// make lines
selection
.selectAll('line')
.data(data)
.join('line')
.attr('x1', (d) => d.x)
.attr('y1', (d) => d.y + d.r)
.attr('x2', (d) => d.x)
.attr('y2', (d) => height)
.attr('stroke-width', (d) => d.r)
.attr('stroke', (d) => colors(d.r));
};

D3 Selections (with lines)

Andrea Mignone

Last edited Apr 22, 2021
Created on Apr 22, 2021

D3 Selections

join vs merge

MIT Licensed