--- id: 5d8a4cfbe6b6180ed9a1ca01 title: Part 36 challengeType: 0 dashedName: part-36 --- # --description-- The axis labels are `text` elements within the `g`, you can use the `selectAll` function to select them. Chain the `selectAll` function to select the `text` elements in this group. You can do that like this: ```js .selectAll('element') ``` # --hints-- test-text ```js assert( /\.attr\('transform', `translate\(0, \$\{svgHeight - svgMargin\}\)`\)\s*\.selectAll\s*\(\s*('|"|`)text\1\s*\)/g.test( code ) ); ``` # --seed-- ## --before-user-code-- ```html D3 Dashboard
``` ## --seed-contents-- ```html ``` # --solutions-- ```html ```