--- id: 5d8a4cfbe6b6180ed9a1c9fc title: Step 31 challengeType: 0 dashedName: step-31 --- # --description-- After all that work, something is finally displayed on the graph. It's the y-axis and all the numbers are hidden on the left. Move the axis your `svgMargin` to the right by chaining an `attr` function to the selection. Use it to set the `transform` to `translate(${svgMargin}, 0)`. Use a template literal (backticks) to set the value so you can put your variable in there. # --hints-- test-text ```js assert($('g')[0].attributes.transform.nodeValue === 'translate(70, 0)'); ``` # --seed-- ## --before-user-code-- ```html