--- id: 5d8a4cfbe6b6180ed9a1ca03 title: Part 38 challengeType: 0 --- ## 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.
## Instructions
## Tests
```yml tests: - text: test-text testString: assert($('.tick > text').filter((node, index) => index.style['text-anchor'] === 'end').length === 9); ```
## Challenge Seed
```html ```
### Before Test
```html D3 Dashboard
```
## Solution
```html ```