{
const context = DOM.context2d(width,500);
context.beginPath()
context.moveTo(0,500 - daysOfAirData.data[0].intensity.forecast)
for( let x = 0; x < 337; x++ ) context.lineTo( x*2, 500 - daysOfAirData.data[x].intensity.forecast )
context.strokeStyle = "blue"
context.stroke()
return context.canvas
}