--- id: 5d8a4cfbe6b6180ed9a1ca4d title: Part 110 challengeType: 0 --- ## Description
The function you just added, placed the start of the text at the midpoint of each slice. Change the `style` of the text to give it a `text-anchor` of `middle` so the middle of the text is in the middle of the slice. After that, set the `font` to `10px verdana`.
## Instructions
## Tests
```yml tests: - text: test-text testString: const text = $('.dashboard div svg g text')[0]; assert(text.style.textAnchor === 'middle' && text.style.font.toLowerCase() === '10px verdana'); ```
## Challenge Seed
```html ```
### Before Test
```html D3 Dashboard
```
## Solution
```html ```