finalVis = {
const svg = html `<svg width=${width} height=${height} />`
d3.select(svg)
.selectAll('path')
.data( voices_rests )
.join('path')
.attr('d', line.defined(d => d.value !== null))
.style('stroke', coloring)
.style('stroke-width', 2)
.style('fill', 'transparent')
d3.select(svg)
.append('g')
.attr('transform', `translate(0,${ height - margin.bottom })`)
.call(xAxis)
.selectAll('.domain').remove()
d3.select(svg)
.append('text')
.attr('x', width/2)
.attr('y', height)
.attr('text-anchor', 'middle')
.style('font-size', '12px')
.style('font-weight', 'bold')
.text("Time")
d3.select(svg)
.append('g')
.attr('transform', `translate(${ margin.left },0)`)
.call(yAxis)
.selectAll('.domain').remove()
d3.select(svg)
.append('g')
.attr('transform', `translate(${margin.left - 25},${(height - margin.bottom + margin.top)/2 + 12})`)
.append('text')
.attr('transform', 'rotate(270)')
.attr('text-anchor', 'start')
.style('font-size', '12px')
.style('font-weight', 'bold')
.text('Pitches (midi)')
return svg
}