--- id: 5d8a4cfbe6b6180ed9a1ca40 title: Part 99 challengeType: 0 dashedName: part-99 --- # --description-- Set the `d` attribute to your `pieArc` variable. Just like the `d` in your lines, this is an SVG attribute for path elements that describes how to draw things. Your `pieArc` variable will determine what this value is for you. # --hints-- test-text ```js assert($('.dashboard div svg path')[0].getAttribute('d').length === 94); ``` # --seed-- ## --before-user-code-- ```html D3 Dashboard
``` ## --seed-contents-- ```html ``` # --solutions-- ```html ```