{
const rectWidth = 50
const svg = html`
<svg width=${rectWidth * barData.length} height=100 style='border: 1px dashed'>
<rect />
<rect />
<rect />
<rect />
<rect />
</rect>
`
d3.select(svg).selectAll('rect')
.data(barData)
.attr('x', (d, i) => i * rectWidth)
.attr('height', d => d)
.attr('width', rectWidth)
.attr('stroke-width', 3)
.attr('stroke-dasharray', '5 5')
.attr('stroke', 'plum')
.attr('fill', 'pink')
return svg
}