--- id: 587d7fab367417b2b2512bd8 title: Add Attributes to the Circle Elements challengeType: 6 forumTopicId: 301471 localeTitle: Добавить атрибуты элементов круга --- ## Description
Последняя задача создала элементы circle для каждой точки dataset и добавила их в холст SVG. Но D3 нуждается в дополнительной информации о положении и размере каждого circle чтобы отображать их правильно. circle в SVG имеет три основных атрибута. Атрибуты cx и cy - это координаты. Они сообщают D3, где можно расположить центр фигуры на холсте SVG. Радиус (атрибут r ) задает размер circle . Как и rect координата y , атрибут cy для circle измеряется от вершины холста SVG, а не снизу. Все три атрибута могут использовать функцию обратного вызова для динамического определения их значений. Помните, что все методы, закодированные после того, как data(dataset) запускаются один раз для каждого элемента в dataset . Параметр d в функции обратного вызова относится к текущему элементу в dataset , который является массивом для каждой точки. Для доступа к значениям в этом массиве вы используете запись в виде скобок, например d[0] .
## Instructions
Добавьте атрибуты cx , cy и r в элементы circle . Значение cx должно быть первым числом в массиве для каждого элемента в dataset . Значение cy должно основываться на втором номере в массиве, но обязательно показывать диаграмму с правой стороны и не инвертировать. Значение r должно быть 5 для всех кругов.
## Tests
```yml tests: - text: Your code should have 10 circle elements. testString: assert($('circle').length == 10); - text: The first circle element should have a cx value of 34, a cy value of 422, and an r value of 5. testString: assert($('circle').eq(0).attr('cx') == '34' && $('circle').eq(0).attr('cy') == '422' && $('circle').eq(0).attr('r') == '5'); - text: The second circle element should have a cx value of 109, a cy value of 220, and an r value of 5. testString: assert($('circle').eq(1).attr('cx') == '109' && $('circle').eq(1).attr('cy') == '220' && $('circle').eq(1).attr('r') == '5'); - text: The third circle element should have a cx value of 310, a cy value of 380, and an r value of 5. testString: assert($('circle').eq(2).attr('cx') == '310' && $('circle').eq(2).attr('cy') == '380' && $('circle').eq(2).attr('r') == '5'); - text: The fourth circle element should have a cx value of 79, a cy value of 89, and an r value of 5. testString: assert($('circle').eq(3).attr('cx') == '79' && $('circle').eq(3).attr('cy') == '89' && $('circle').eq(3).attr('r') == '5'); - text: The fifth circle element should have a cx value of 420, a cy value of 280, and an r value of 5. testString: assert($('circle').eq(4).attr('cx') == '420' && $('circle').eq(4).attr('cy') == '280' && $('circle').eq(4).attr('r') == '5'); - text: The sixth circle element should have a cx value of 233, a cy value of 355, and an r value of 5. testString: assert($('circle').eq(5).attr('cx') == '233' && $('circle').eq(5).attr('cy') == '355' && $('circle').eq(5).attr('r') == '5'); - text: The seventh circle element should have a cx value of 333, a cy value of 404, and an r value of 5. testString: assert($('circle').eq(6).attr('cx') == '333' && $('circle').eq(6).attr('cy') == '404' && $('circle').eq(6).attr('r') == '5'); - text: The eighth circle element should have a cx value of 222, a cy value of 167, and an r value of 5. testString: assert($('circle').eq(7).attr('cx') == '222' && $('circle').eq(7).attr('cy') == '167' && $('circle').eq(7).attr('r') == '5'); - text: The ninth circle element should have a cx value of 78, a cy value of 180, and an r value of 5. testString: assert($('circle').eq(8).attr('cx') == '78' && $('circle').eq(8).attr('cy') == '180' && $('circle').eq(8).attr('r') == '5'); - text: The tenth circle element should have a cx value of 21, a cy value of 377, and an r value of 5. testString: assert($('circle').eq(9).attr('cx') == '21' && $('circle').eq(9).attr('cy') == '377' && $('circle').eq(9).attr('r') == '5'); ```
## Challenge Seed
```html ```
## Solution
```html // solution required ```