chart1 = {
const svg = d3.select(DOM.svg(width*(6/7), 120));
svg
.append('path')
.attr('d', lineGen(points))
.style('fill', 'none')
.style('stroke', 'black');
svg
.append('path')
.attr('d', lineGen([[0,50], [width,50]]))
.style('stroke', 'red')
.style('stroke-dasharray', (8,2))
.style('stroke-width', '2.5px');
return svg.node();
}