--- id: 5d8a4cfbe6b6180ed9a1ca20 title: Part 67 challengeType: 0 dashedName: part-67 --- # --description-- Next, set the `cy` attribute to `d => xScale(d.followers.twitter)`. As a reminder, this will pass each value of your Twitter followers to the `xScale` function where it will determine the y coordinate to use. # --hints-- test-text ```js assert($('svg circle')[0].getAttribute('cy') == '243.232'); ``` # --seed-- ## --before-user-code-- ```html D3 Dashboard
``` ## --seed-contents-- ```html ``` # --solutions-- ```html ```