--- id: 5d8a4cfbe6b6180ed9a1ca2b title: Step 78 challengeType: 0 dashedName: step-78 --- # --description-- Appropriately set the `cx` and `cy` attributes for the Instagram circles. # --hints-- test-text ```js assert( $('svg circle')[18].getAttribute('cx') == '70' && $('svg circle')[18].getAttribute('cy') == '424.024' ); ``` # --seed-- ## --before-user-code-- ```html D3 Dashboard
``` ## --seed-contents-- ```html ``` # --solutions-- ```html ```