svg = {
const svg = d3.create("svg").attr("viewBox", [0, 0, width, height]);
const g = svg
.append("g")
.attr("transform", `translate(${margin.left}, ${margin.top})`);
g.append("g")
.call(d3.axisBottom(x))
.attr("transform", `translate(0, ${height - margin.top - margin.bottom})`);
g.append("g").call(d3.axisLeft(y));
g.selectAll(".point")
.data(data)
.join("circle")
.attr("class", "point")
.attr("cx", d => x(d.date))
.attr("cy", d => y(d.price))
.attr("r", 2)
.attr("fill", d => color(d.symbol));
g.selectAll(".line")
.data(groupedData)
.join("path")
.attr("class", "line")
.attr("d", group => line2(group[1]))
.style("fill", "none")
.style("stroke", group => color(group[0]));
return svg.node();
}