chart = {
const svg = d3.create('svg')
.attr("viewBox", [0, 0, width, height])
svg.append('g')
.attr("class", "x-axis")
.call(xAxis);
svg.append('g')
.attr("class", "y-axis")
.call(yAxis);
svg.append("path")
.attr("class", "line")
.datum(data)
.attr("fill", "none")
.attr("stroke", "steelblue")
.attr("stroke-width", 1.5)
.attr("stroke-linejoin", "round")
.attr("stroke-linecap", "round")
.attr("d", line);
return svg.node();
}