--- id: 5d8a4cfbe6b6180ed9a1ca00 title: Part 35 challengeType: 0 dashedName: part-35 --- # --description-- The axis has the right size and labels, but needs to be moved down. Use the `attr` function to set the `transform` like you did before. This time move it down your `svgHeight` minus the `svgMargin`. # --hints-- test-text ```js assert($('svg > g')[1].attributes.transform.nodeValue === 'translate(0, 430)'); ``` # --seed-- ## --before-user-code-- ```html D3 Dashboard
``` ## --seed-contents-- ```html ``` # --solutions-- ```html ```