--- id: 5d8a4cfbe6b6180ed9a1ca2c title: Part 79 challengeType: 0 dashedName: part-79 --- # --description-- Appropriately set the radius (`r`), `fill`, and `stroke` for these circles. # --hints-- test-text ```js assert( $('svg circle')[18].getAttribute('r') == '6' && $('svg circle')[18].getAttribute('fill') === 'white' && $('svg circle')[18].getAttribute('stroke') === '#fd9b98' ); ``` # --seed-- ## --before-user-code-- ```html D3 Dashboard
``` ## --seed-contents-- ```html ``` # --solutions-- ```html ```