diffChart = {
const svg = d3
.select(DOM.svg(width, diffData, diffData2))
.attr("viewBox", [0, 0, width, 580]);
svg
.append("text")
.text("California Versus Illinois Covid19 Cases")
.style("font-weight", "bold")
.style("font-size", "15px")
.attr("transform", "translate(400, 20)");
svg
.append("text")
.attr("class", "text")
.attr("transform", "translate(510,550)")
.style("text-anchor", "middle")
.style("font-size", "12px")
.text("Date");
svg
.append("text")
.attr("class", "text")
.attr("transform", "translate(10,222)rotate(-90)")
.style("text-anchor", "middle")
.style("font-size", "9px")
.text("Covid19 Cases");
svg
.append('clipPath')
.attr('id', 'high-clip')
.append('path')
.datum(diffData2)
.attr('d', areas.y0(0).y1(d => y3(d.cases)));
svg
.append('clipPath')
.attr('id', 'low-clip')
.append('path')
.datum(diffData2)
.attr('d', areas.y0(height).y1(d => y3(d.cases)));
svg
.append('path')
.datum(diffData)
.attr('clip-path', 'url(#low-clip)')
.attr('fill', '#ffaa00')
.attr('d', areas.y0(0).y1(d => y3(d.cases)));
svg
.append('path')
.datum(diffData)
.attr('clip-path', 'url(#high-clip)')
.attr('fill', '#00bbff')
.attr('d', areas.y0(height).y1(d => y3(d.cases)));
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();
}