chart2 = {
const svg = d3.create("svg")
.attr("viewBox", [0, 0, width, height3])
.style("overflow", "visible");
svg.append("g")
.call(xAxis_3);
svg.append("g")
.call(yAxis_3);
const path = svg.append("g")
.attr("fill", "none")
.attr("stroke-width", 1.5)
.attr("stroke-linejoin", "round")
.attr("stroke-linecap", "round")
.selectAll("path")
.data(data_min.series)
.join("path")
.style("mix-blend-mode", "multiply")
.attr("d", d => line(d.values))
.attr("stroke", "steelblue")
svg.append("text")
.attr("x", 50)
.attr("y", 50)
.text("GME Stock Value");
return svg.node();
}