chart = {
const svg = d3.select(DOM.svg(width, height));
const { id, href } = DOM.uid();
const mask = svg.append("mask").attr("id", id);
const pctOffset = y(0)/height
svg.append("linearGradient")
.attr("id", "area-gradient")
.attr("gradientUnits", "userSpaceOnUse")
.attr("x1", 0).attr("y1", 0)
.attr("x2", 0).attr("y2", height)
.selectAll("stop")
.data([
{offset: "0%", color: topColor},
{offset: pctOffset, color: topColor},
{offset: pctOffset, color: bottomColor},
{offset: "100%", color: bottomColor}
])
.enter().append("stop")
.attr("offset", function(d) { return d.offset; })
.attr("stop-color", function(d) { return d.color; });
svg
.append("path")
.datum(data)
.attr("fill", "url(#area-gradient)")
.attr("d", area);
svg.append("g").call(xAxis);
svg.append("g").call(yAxis);
return svg.node();
}