--- id: 5d8a4cfbe6b6180ed9a1ca02 title: Step 37 challengeType: 0 dashedName: step-37 --- # --description-- I want the text elements to be rotated slightly. Chain the `style` function to set the `transform` to `translate(-12px, 0) rotate(-50deg)`. This will put them at an angle. # --hints-- test-text ```js assert( $('.tick > text').filter( (node, index) => index.style.transform === 'translate(-12px) rotate(-50deg)' || index.style.transform === 'translate(-12px, 0px) rotate(-50deg)' ).length === 9 ); ``` # --seed-- ## --before-user-code-- ```html D3 Dashboard
``` ## --seed-contents-- ```html ``` # --solutions-- ```html ```