--- id: 587d7faa367417b2b2512bd6 title: Add a Tooltip to a D3 Element required: - src: 'https://cdnjs.cloudflare.com/ajax/libs/d3/4.3.0/d3.min.js' challengeType: 6 videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert($("title").length == 9, "Your code should have 9 title elements.");' - text: '' testString: 'assert($("title").eq(0).text() == "12", "The first title element should have tooltip text of 12.");' - text: '' testString: 'assert($("title").eq(1).text() == "31", "The second title element should have tooltip text of 31.");' - text: '' testString: 'assert($("title").eq(2).text() == "22", "The third title element should have tooltip text of 22.");' - text: '' testString: 'assert($("title").eq(3).text() == "17", "The fourth title element should have tooltip text of 17.");' - text: '' testString: 'assert($("title").eq(4).text() == "25", "The fifth title element should have tooltip text of 25.");' - text: '' testString: 'assert($("title").eq(5).text() == "18", "The sixth title element should have tooltip text of 18.");' - text: '' testString: 'assert($("title").eq(6).text() == "29", "The seventh title element should have tooltip text of 29.");' - text: '' testString: 'assert($("title").eq(7).text() == "14", "The eighth title element should have tooltip text of 14.");' - text: '' testString: 'assert($("title").eq(8).text() == "9", "The ninth title element should have tooltip text of 9.");' ```
## Challenge Seed
```html ```
## Solution
```js // solution required ```