{
const svg = d3.select(DOM.svg(width, height));
svg.append('g').call(xAxis);
svg.append('g').call(yAxis);
const group = svg
.append('g')
.selectAll('g')
.data(data.series)
.join('g')
.attr('transform', d => `translate(0, ${y(d.name)})`);
group
.append('path')
.attr('fill', '#eee')
.attr('d', d => area(d.values));
group
.append('path')
.attr('fill', 'none')
.attr('stroke', '#222')
.attr('d', d => line(d.values));
return svg.node();
}