chart = {
const svg = d3.create("svg")
.attr("viewBox", [0, 0, width, height])
.attr("id", "chart")
.attr("class", "color-cool-gray-3");
svg.append("g")
.append("rect")
.attr("fill", "#F8FBFB")
.attr("x", 0)
.attr("y", 0)
.attr("width", width)
.attr("height", height - margin.bottom)
svg.append("g")
.style("font-size", "1rem")
.call(yAxis);
svg.append("g")
.style("font-size", "1rem")
.call(xAxis)
svg.append("g")
.selectAll("path")
.data(data.series)
.join("path")
.attr("d", d => area(d.y_bounds))
.attr("data-index", (d, i) => i)
.attr("data-name", d => d.name)
.attr("fill", d => lineLabels.filter(o => o.dataLabel == d.name)[0].color[0])
.attr("stroke", "none")
.style("opacity", 0.1)
.attr("class", "area");
svg.append("g")
.selectAll("path")
.data(data.series)
.join("path")
.attr("d", d => line(d.y))
.attr("data-index", (d, i) => i)
.attr("data-name", d => d.name)
.attr("fill", "none")
.attr("stroke", d => lineLabels.filter(o => o.dataLabel == d.name)[0].color[0])
.attr("stroke-width", 1.5)
.attr("stroke-linejoin", "round")
.attr("stroke-linecap", "round")
.attr("class", "line");
if (showLabels) {
svg.append("g")
.selectAll("text")
.data(lineLabels)
.enter().append("text")
.text(d => d.text)
.attr("fill", d => d.color[1])
.attr("x", d => margin.left + (width * d.x))
.attr("y", d => margin.top + (height * d.y))
.attr("alignment-baseline", "middle")
.attr("text-anchor", "middle")
.attr("class", "xsmall-copy");
}
return svg.node();
}