--- id: 5d8a4cfbe6b6180ed9a1ca41 title: Part 100 challengeType: 0 dashedName: part-100 --- # --description-- The pie graph is being drawn at the `0, 0` coordinates of the SVG. Back on your `pieGraphData` variable, add an attribute that changes the `transform` to `translate(100, 100)`. Since the pie chart has a radius of 100, and the SVG is 200 by 200, this will move it so it is centered. # --hints-- test-text ```js const transform = $('.dashboard div svg g')[0].getAttribute('transform'); assert(/translate\s*\(\s*100\s*,\s*100\s*\)/g.test(transform)); ``` # --seed-- ## --before-user-code-- ```html D3 Dashboard
``` ## --seed-contents-- ```html ``` # --solutions-- ```html ```