---
id: 587d7fac367417b2b2512bde
title: Use a Pre-Defined Scale to Place Elements
required:
- src: 'https://cdnjs.cloudflare.com/ajax/libs/d3/4.3.0/d3.min.js'
challengeType: 6
videoUrl: ''
localeTitle: استخدم مقياس محدد مسبقا لوضع العناصر
---
## Description
مع إعداد المقاييس ، حان الوقت لرسم مخطط القطع المبعثر مرة أخرى. تشبه المقاييس وظائف المعالجة التي تحول البيانات الخام x و y إلى قيم تناسب وعرض بشكل صحيح على لوحة SVG. يحتفظون بالبيانات داخل منطقة رسم الشاشة. يمكنك تعيين قيم السمة الإحداثيات لشكل SVG باستخدام دالة القياس. يتضمن هذا سمات x
و y
للعناصر rect
أو text
، أو cx
و cy
circles
. إليك مثال على ذلك: شكل
.attr ("x"، (d) => xScale (د [0]))
تعيين جداول تعيين تنسيق إحالات لوضع نقاط البيانات على لوحة SVG. لا تحتاج إلى تطبيق المقاييس عند عرض قيمة البيانات الفعلية ، على سبيل المثال ، في أسلوب text()
الخاص بتلخيص الأدوات أو الملصق.
## Instructions
استخدم xScale
و yScale
لوضع كل من شكل circle
text
على لوحة SVG. بالنسبة إلى circles
، يمكنك تطبيق المقاييس لضبط سمات cx
و cy
. اعطهم دائرة نصف قطرها 5 وحدات ، أيضا. بالنسبة لعناصر text
، قم بتطبيق المقاييس لضبط x
و y
. يجب إزاحة العلامات إلى يمين النقاط. للقيام بذلك ، أضف 10 وحدات إلى قيمة البيانات x قبل تمريرها إلى xScale
.
## Tests
```yml
tests:
- text: يجب أن يحتوي circle
10 عناصر circle
.
testString: 'assert($("circle").length == 10, "Your code should have 10 circle
elements.");'
- text: يجب أن يكون لعنصر circle
الأول قيمة cx
تقارب 91 وقيمة cy
تقارب 368 بعد تطبيق المقاييس. يجب أن يكون له أيضًا قيمة r
5.
testString: 'assert(Math.round($("circle").eq(0).attr("cx")) == "91" && Math.round($("circle").eq(0).attr("cy")) == "368" && $("circle").eq(0).attr("r") == "5", "The first circle
element should have a cx
value of approximately 91 and a cy
value of approximately 368 after applying the scales. It should also have an r
value of 5.");'
- text: يجب أن يكون لعنصر circle
الثاني قيمة cx
تقارب 159 وقيمة cy
تقارب 181 بعد تطبيق المقاييس. يجب أن يكون له أيضًا قيمة r
5.
testString: 'assert(Math.round($("circle").eq(1).attr("cx")) == "159" && Math.round($("circle").eq(1).attr("cy")) == "181" && $("circle").eq(1).attr("r") == "5", "The second circle
element should have a cx
value of approximately 159 and a cy
value of approximately 181 after applying the scales. It should also have an r
value of 5.");'
- text: يجب أن يكون لعنصر circle
الثالث قيمة cx
تقارب 340 وقيمة cy
تقارب 329 بعد تطبيق المقاييس. يجب أن يكون له أيضًا قيمة r
5.
testString: 'assert(Math.round($("circle").eq(2).attr("cx")) == "340" && Math.round($("circle").eq(2).attr("cy")) == "329" && $("circle").eq(2).attr("r") == "5", "The third circle
element should have a cx
value of approximately 340 and a cy
value of approximately 329 after applying the scales. It should also have an r
value of 5.");'
- text: يجب أن يكون لعنصر circle
الرابعة قيمة cx
تقارب 131 وقيمة cy
تقارب 60 بعد تطبيق المقاييس. يجب أن يكون له أيضًا قيمة r
5.
testString: 'assert(Math.round($("circle").eq(3).attr("cx")) == "131" && Math.round($("circle").eq(3).attr("cy")) == "60" && $("circle").eq(3).attr("r") == "5", "The fourth circle
element should have a cx
value of approximately 131 and a cy
value of approximately 60 after applying the scales. It should also have an r
value of 5.");'
- text: يجب أن يكون لعنصر circle
الخامسة قيمة cx
تقارب 440 وقيمة cy
تقارب 237 بعد تطبيق المقاييس. يجب أن يكون له أيضًا قيمة r
5.
testString: 'assert(Math.round($("circle").eq(4).attr("cx")) == "440" && Math.round($("circle").eq(4).attr("cy")) == "237" && $("circle").eq(4).attr("r") == "5", "The fifth circle
element should have a cx
value of approximately 440 and a cy
value of approximately 237 after applying the scales. It should also have an r
value of 5.");'
- text: ''
testString: 'assert(Math.round($("circle").eq(5).attr("cx")) == "271" && Math.round($("circle").eq(5).attr("cy")) == "306" && $("circle").eq(5).attr("r") == "5", "The sixth circle
element should have a cx
value of approximately 271 and a cy
value of approximately 306 after applying the scales. It should also have an r
value of 5.");'
- text: يجب أن يكون لعنصر circle
السابعة قيمة cx
تقارب 361 وقيمة cy
تقارب 351 بعد تطبيق المقاييس. يجب أن يكون له أيضًا قيمة r
5.
testString: 'assert(Math.round($("circle").eq(6).attr("cx")) == "361" && Math.round($("circle").eq(6).attr("cy")) == "351" && $("circle").eq(6).attr("r") == "5", "The seventh circle
element should have a cx
value of approximately 361 and a cy
value of approximately 351 after applying the scales. It should also have an r
value of 5.");'
- text: ''
testString: 'assert(Math.round($("circle").eq(7).attr("cx")) == "261" && Math.round($("circle").eq(7).attr("cy")) == "132" && $("circle").eq(7).attr("r") == "5", "The eighth circle
element should have a cx
value of approximately 261 and a cy
value of approximately 132 after applying the scales. It should also have an r
value of 5.");'
- text: ''
testString: 'assert(Math.round($("circle").eq(8).attr("cx")) == "131" && Math.round($("circle").eq(8).attr("cy")) == "144" && $("circle").eq(8).attr("r") == "5", "The ninth circle
element should have a cx
value of approximately 131 and a cy
value of approximately 144 after applying the scales. It should also have an r
value of 5.");'
- text: ''
testString: 'assert(Math.round($("circle").eq(9).attr("cx")) == "79" && Math.round($("circle").eq(9).attr("cy")) == "326" && $("circle").eq(9).attr("r") == "5", "The tenth circle
element should have a cx
value of approximately 79 and a cy
value of approximately 326 after applying the scales. It should also have an r
value of 5.");'
- text: ''
testString: 'assert($("text").length == 10, "Your code should have 10 text
elements.");'
- text: ''
testString: 'assert(Math.round($("text").eq(0).attr("x")) == "100" && Math.round($("text").eq(0).attr("y")) == "368", "The first label should have an x
value of approximately 100 and a y
value of approximately 368 after applying the scales.");'
- text: ''
testString: 'assert(Math.round($("text").eq(1).attr("x")) == "168" && Math.round($("text").eq(1).attr("y")) == "181", "The second label should have an x
value of approximately 168 and a y
value of approximately 181 after applying the scales.");'
- text: ''
testString: 'assert(Math.round($("text").eq(2).attr("x")) == "350" && Math.round($("text").eq(2).attr("y")) == "329", "The third label should have an x
value of approximately 350 and a y
value of approximately 329 after applying the scales.");'
- text: ''
testString: 'assert(Math.round($("text").eq(3).attr("x")) == "141" && Math.round($("text").eq(3).attr("y")) == "60", "The fourth label should have an x
value of approximately 141 and a y
value of approximately 60 after applying the scales.");'
- text: ''
testString: 'assert(Math.round($("text").eq(4).attr("x")) == "449" && Math.round($("text").eq(4).attr("y")) == "237", "The fifth label should have an x
value of approximately 449 and a y
value of approximately 237 after applying the scales.");'
- text: ''
testString: 'assert(Math.round($("text").eq(5).attr("x")) == "280" && Math.round($("text").eq(5).attr("y")) == "306", "The sixth label should have an x
value of approximately 280 and a y
value of approximately 306 after applying the scales.");'
- text: ''
testString: 'assert(Math.round($("text").eq(6).attr("x")) == "370" && Math.round($("text").eq(6).attr("y")) == "351", "The seventh label should have an x
value of approximately 370 and a y
value of approximately 351 after applying the scales.");'
- text: ''
testString: 'assert(Math.round($("text").eq(7).attr("x")) == "270" && Math.round($("text").eq(7).attr("y")) == "132", "The eighth label should have an x
value of approximately 270 and a y
value of approximately 132 after applying the scales.");'
- text: ''
testString: 'assert(Math.round($("text").eq(8).attr("x")) == "140" && Math.round($("text").eq(8).attr("y")) == "144", "The ninth label should have an x
value of approximately 140 and a y
value of approximately 144 after applying the scales.");'
- text: ''
testString: 'assert(Math.round($("text").eq(9).attr("x")) == "88" && Math.round($("text").eq(9).attr("y")) == "326", "The tenth label should have an x
value of approximately 88 and a y
value of approximately 326 after applying the scales.");'
```
## Challenge Seed
## Solution
```js
// solution required
```