fix(challenges): add code input space for final d3 challenge

This commit is contained in:
Alex Swiontek
2018-07-12 12:29:38 -07:00
committed by Kristofer Koishigawa
parent c28aac036d
commit f0b7ea9e56

View File

@ -2836,6 +2836,9 @@
" .attr(\"y\", (d) => yScale(d[1]))",
" ",
" const xAxis = d3.axisBottom(xScale);",
" // Add your code below this line",
" const yAxis = undefined;",
" // Add your code above this line",
" ",
" svg.append(\"g\")",
" .attr(\"transform\", \"translate(0,\" + (h - padding) + \")\")",