{
const svg = d3.select(DOM.svg(500,500))
const line = d3.line()
.x((d)=> d.x)
.y((d)=> d.y);
const xScale = d3.scaleLinear()
.domain([0, 8])
.range([0, 500]);
svg.datum(lineData).append('path')
.attr('fill', 'none')
.attr('stroke', "steelblue")
.attr('d', line);
svg.selectAll('text.norotation')
.data(data)
.enter()
.append('text')
.text((d)=>d)
.classed('norotation', true)
.attr('fill', 'black')
.attr('x', (d,i)=> xScale(i))
.attr('y', 200)
svg.selectAll('text.rotation')
.data(data)
.enter()
.append('text')
.text((d)=>d)
.classed('rotation', true)
.attr('fill', 'black')
.attr('transform', (d,i)=>{
return 'translate( '+xScale(i)+' , '+220+'),'+ 'rotate(45)';})
.attr('x', 0)
.attr('y', 0)
return svg.node()
}