--- 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`. # --hints-- test-text ```js const text = $('.dashboard div svg g text')[0]; assert( text.style.textAnchor === 'middle' && text.style.font.toLowerCase() === '10px verdana' ); ``` # --seed-- ## --before-user-code-- ```html D3 Dashboard
``` ## --seed-contents-- ```html ``` # --solutions-- ```html ```