--- id: 5d8a4cfbe6b6180ed9a1ca04 title: Part 39 challengeType: 0 dashedName: part-39 --- # --description-- Add two more `style` functions; one to set the `cursor` to `pointer`, and another to set the `font` to `10px verdana`. You will add some hover effects later, so the pointer will make for a better experience. # --hints-- test-text ```js assert( $('.tick > text').filter( (node, index) => index.style.cursor === 'pointer' && index.style.font === '10px verdana' ).length === 9 ); ``` # --seed-- ## --before-user-code-- ```html D3 Dashboard
``` ## --seed-contents-- ```html ``` # --solutions-- ```html ```