A very simple template for using D3 4.x. D3-selection-multi is loaded to enable CoffeeScript’s shorthand notation for setting attributes:
svg.append 'circle'
.attrs
r: 100
cx: width/2
cy: height/2
fill: 'teal'
Notice that D3 4.x uses .attrs()
instead of .attr()
.