---
id: 587d7faa367417b2b2512bd2
title: Add Labels to D3 Elements
required:
- src: 'https://cdnjs.cloudflare.com/ajax/libs/d3/4.3.0/d3.min.js'
challengeType: 6
videoUrl: ''
localeTitle: 将标签添加到D3元素
---
## Description
D3允许您使用SVG text元素标记图形元素,例如条形图。与rect元素一样, text元素需要具有x和y属性,以将其放在SVG画布上。它还需要访问数据以显示这些值。 D3让您可以高度控制标杆的标注方式。
## Instructions
编辑器中的代码已将数据绑定到每个新text元素。首先,将text节点附加到svg 。接下来,添加x和y坐标的属性。应该以与rect相同的方式计算它们,除了text的y值应该使标签比条形高3个单位。最后,使用D3 text()方法将标签设置为等于数据点值。 注意
对于标签比坐吧较高,决定是否y为值text应比少3个或大或3 y了吧价值。
## Tests
```yml
tests:
- text: 第一个text元素的标签应为12, y值应为61。
testString: 'assert($("text").eq(0).text() == "12" && $("text").eq(0).attr("y") == "61", "The first text element should have a label of 12 and a y value of 61.");'
- text: 第二个text元素的标签应为31, y值应为4。
testString: 'assert($("text").eq(1).text() == "31" && $("text").eq(1).attr("y") == "4", "The second text element should have a label of 31 and a y value of 4.");'
- text: 第三个text元素的标签应为22, y值应为31。
testString: 'assert($("text").eq(2).text() == "22" && $("text").eq(2).attr("y") == "31", "The third text element should have a label of 22 and a y value of 31.");'
- text: 第四个text元素的标签应为17, y值应为46。
testString: 'assert($("text").eq(3).text() == "17" && $("text").eq(3).attr("y") == "46", "The fourth text element should have a label of 17 and a y value of 46.");'
- text: 第五个text元素的标签应为25, y值应为22。
testString: 'assert($("text").eq(4).text() == "25" && $("text").eq(4).attr("y") == "22", "The fifth text element should have a label of 25 and a y value of 22.");'
- text: 第六个text元素的标签应为18, y值应为43。
testString: 'assert($("text").eq(5).text() == "18" && $("text").eq(5).attr("y") == "43", "The sixth text element should have a label of 18 and a y value of 43.");'
- text: 第七个text元素的标签应为29, y值应为10。
testString: 'assert($("text").eq(6).text() == "29" && $("text").eq(6).attr("y") == "10", "The seventh text element should have a label of 29 and a y value of 10.");'
- text: 第八个text元素的标签应为14, y值应为55。
testString: 'assert($("text").eq(7).text() == "14" && $("text").eq(7).attr("y") == "55", "The eighth text element should have a label of 14 and a y value of 55.");'
- text: 第九个text元素的标签应为9, y值应为70。
testString: 'assert($("text").eq(8).text() == "9" && $("text").eq(8).attr("y") == "70", "The ninth text element should have a label of 9 and a y value of 70.");'
```
## Challenge Seed
## Solution
```js
// solution required
```