--- id: 5d8a4cfbe6b6180ed9a1ca23 title: Part 70 challengeType: 0 dashedName: part-70 --- # --description-- Use the `style` function to set the `cursor` to `pointer`. Like your year labels, this will be an indicator for a hover effect you will add later. # --hints-- test-text ```js assert($('svg circle')[0].style.cursor === 'pointer'); ``` # --seed-- ## --before-user-code-- ```html D3 Dashboard
``` ## --seed-contents-- ```html ``` # --solutions-- ```html ```