--- title: Add Axes to a Visualization --- # Add Axes to a Visualization --- ## Hints ### Hint 1 Set the y-axis variable using `const yAxis = d3.axisLeft(yScale);`. ### Hint 2 Append the y-axis using `svg.append()`. --- ## Solutions
Solution 1 (Click to Show/Hide) ```html ```