--- id: 5d8a4cfbe6b6180ed9a1ca03 title: Step 38 challengeType: 0 dashedName: step-38 --- # --description-- Add another `style` function to set the `text-anchor` to `end`. This will change the spot that each text element rotates around to the `end` of the element so they will align better. # --hints-- test-text ```js assert( $('.tick > text').filter( (node, index) => index.style['text-anchor'] === 'end' ).length === 9 ); ``` # --seed-- ## --before-user-code-- ```html D3 Dashboard
``` ## --seed-contents-- ```html ``` # --solutions-- ```html ```