diffChart = {
const svg = d3
.select(DOM.svg(width, diffData, diffData2))
.attr("viewBox", [0, 0, width, height]);
svg
.append("text")
.attr("class", "text")
.attr("transform", "translate(510,490)")
.style("text-anchor", "middle")
.style("font-size", "12px")
.text("Year");
svg
.append("text")
.attr("class", "text")
.attr("transform", "translate(10,222)rotate(-90)")
.style("text-anchor", "middle")
.style("font-size", "9px")
.text("Amazon Versus Google Stock Price");
svg
.append('clipPath')
.attr('id', 'high-clip')
.append('path')
.datum(diffData)
.attr('d', areas.y0(height - margin.bottom));
svg
.append('clipPath')
.attr('id', 'low-clip')
.append('path')
.datum(diffData2)
.attr('d', areas.y0(0 + margin.top));
svg
.append('path')
.datum(diffData)
.attr('clip-path', 'url(#low-clip)')
.attr('fill', '#ffaa00')
.attr('d', areas.y0(d => y3(d.price)));
svg
.append('path')
.datum(diffData2)
.attr('clip-path', 'url(#high-clip)')
.attr('fill', '#00bbff')
.attr('d', areas);
svg
.append('path')
.datum(diffData)
.attr('stroke', '#ff0000')
.attr('stroke-width', 2)
.attr('fill', 'none')
.attr('d', areas.lineY0());
svg
.append('path')
.datum(diffData2)
.attr('stroke', '#0000ff')
.attr('stroke-width', 2)
.attr('fill', 'none')
.attr('d', areas.lineY1());
xDiffAxis(svg.append('g'));
yDiffAxis(svg.append('g'));
return svg.node();
}