chart = {
const chartGraph = d3.select(DOM.svg(SVGwidth, SVGheight));
chartGraph.append("g").call(xAxis);
chartGraph.append("g").call(yAxis);
chartGraph.append("path")
.datum(dataSet.fullSet)
.attr("fill", "none")
.attr("stroke", "#69b3a2")
.attr("stroke-width", 1.5)
.attr("d", d3.line()
.x(function(d) { return x(d.hour_beginning) })
.y(function(d) { return y(d.Pedestrians) })
)
chartGraph.append("g")
.selectAll("dot")
.data(dataSet.fullSet)
.enter()
.append("circle")
.attr("cx", function(d) { return x(d.hour_beginning) } )
.attr("cy", function(d) { return y(d.Pedestrians) } )
.attr("r", 3)
.attr("fill", "#69b3a2")
chartGraph.node().update = () => {
};
return chartGraph.node();
}