chart = d3
.create('svg')
.attr("viewBox", [-46, -25, width + 46, height + 25])
.attr("class", "chart")
.attr("cursor", "ew-resize")
.attr("color", isFullscreen ? "#FFF" : "#000")
.style("background-color", isFullscreen ? "#000" : "#FFF")
.call(behaviour)
.call(fullscreen, { x: width, y: height })
.call(g => g.append("g").call(yAxis))
.call(moveLabel, "Anomaly (°C)", -40, y(0) + 40, 270, 15)
.node()