Files

348 lines
9.4 KiB
Markdown
Raw Permalink Normal View History

---
id: 587d7fac367417b2b2512bde
title: 使用預定義的比例放置元素
challengeType: 6
forumTopicId: 301494
dashedName: use-a-pre-defined-scale-to-place-elements
---
# --description--
當比例尺建立好後,是時候重新映射散點圖了。 比例尺就像操作函數一樣,將 `x``y` 的原數據值變爲適合並可在 SVG 畫布上正確渲染的值。 它們使數據在屏幕的佈局區域內部。
用比例尺函數爲 SVG 圖形設置座標屬性值。 這包括 `rect` 或者 `text` 元素的 `x``y` 屬性,或者 `circles``cx``cy`。 以下是一個例子:
```js
shape
.attr("x", (d) => xScale(d[0]))
```
比例尺設置圖形座標屬性來將數據點放置在 SVG 畫布上。 當你顯示實際數據值時,不用使用比例尺,例如,在提示框或標籤中的 `text()` 方法。
# --instructions--
使用 `xScale``yScale``circle``text` 圖形放置在 SVG 畫布上。 對於 `circles`,使用比例尺設置 `cx``cy` 屬性, 半徑爲 `5` 個單位。
對於 `text` 元素,使用比例尺設置 `x``y` 屬性。 標籤應該標註在點的右邊, 爲此,在將 `x` 數據值傳遞給 `xScale` 之前,要給它加上 `10` 個單位。
# --hints--
應該有 10 個 `circle` 元素。
```js
assert($('circle').length == 10);
```
在使用比例尺後,第一個 `circle` 元素的 `cx` 值應該大約爲 `91``cy` 值應該大約爲 `368`。 它的 `r` 值應爲 `5`
```js
assert(
Math.round($('circle').eq(0).attr('cx')) == '91' &&
Math.round($('circle').eq(0).attr('cy')) == '368' &&
$('circle').eq(0).attr('r') == '5'
);
```
在使用比例尺後,第二個 `circle` 元素的 `cx` 值應該大約爲 `159``cy` 值應該大約爲 `181`。 它的 `r` 值應爲 `5`
```js
assert(
Math.round($('circle').eq(1).attr('cx')) == '159' &&
Math.round($('circle').eq(1).attr('cy')) == '181' &&
$('circle').eq(1).attr('r') == '5'
);
```
在使用比例尺後,第三個 `circle` 元素的 `cx` 值應該大約爲 `340``cy` 值應該大約爲 `329`。 它的 `r` 值應爲 `5`
```js
assert(
Math.round($('circle').eq(2).attr('cx')) == '340' &&
Math.round($('circle').eq(2).attr('cy')) == '329' &&
$('circle').eq(2).attr('r') == '5'
);
```
在使用比例尺後,第四個 `circle` 元素的 `cx` 值應該大約爲 `131``cy` 值應該大約爲 `60`。 它的 `r` 值應爲 `5`
```js
assert(
Math.round($('circle').eq(3).attr('cx')) == '131' &&
Math.round($('circle').eq(3).attr('cy')) == '60' &&
$('circle').eq(3).attr('r') == '5'
);
```
在使用比例尺後,第五個 `circle` 元素的 `cx` 值應該大約爲 `440``cy` 值應該大約爲 `237`。 它的 `r` 值應爲 `5`
```js
assert(
Math.round($('circle').eq(4).attr('cx')) == '440' &&
Math.round($('circle').eq(4).attr('cy')) == '237' &&
$('circle').eq(4).attr('r') == '5'
);
```
在使用比例尺後,第六個 `circle` 元素的 `cx` 值應該大約爲 `271``cy` 值應該大約爲 `306`。 它的 `r` 值應爲 `5`
```js
assert(
Math.round($('circle').eq(5).attr('cx')) == '271' &&
Math.round($('circle').eq(5).attr('cy')) == '306' &&
$('circle').eq(5).attr('r') == '5'
);
```
在使用比例尺後,第七個 `circle` 元素的 `cx` 值應該大約爲 `361``cy` 值應該大約爲 `351`。 它的 `r` 值應爲 `5`
```js
assert(
Math.round($('circle').eq(6).attr('cx')) == '361' &&
Math.round($('circle').eq(6).attr('cy')) == '351' &&
$('circle').eq(6).attr('r') == '5'
);
```
在使用比例尺後,第八個 `circle` 元素的 `cx` 值應該大約爲 `261``cy` 值應該大約爲 `132`。 它的 `r` 值應爲 `5`
```js
assert(
Math.round($('circle').eq(7).attr('cx')) == '261' &&
Math.round($('circle').eq(7).attr('cy')) == '132' &&
$('circle').eq(7).attr('r') == '5'
);
```
在使用比例尺後,第九個 `circle` 元素的 `cx` 值應該大約爲 `131``cy` 值應該大約爲 `144`。 它的 `r` 值應爲 `5`
```js
assert(
Math.round($('circle').eq(8).attr('cx')) == '131' &&
Math.round($('circle').eq(8).attr('cy')) == '144' &&
$('circle').eq(8).attr('r') == '5'
);
```
在使用比例尺後,第十個 `circle` 元素的 `cx` 值應該大約爲 `79``cy` 值應該大約爲 `326`。 它的 `r` 值應爲 `5`
```js
assert(
Math.round($('circle').eq(9).attr('cx')) == '79' &&
Math.round($('circle').eq(9).attr('cy')) == '326' &&
$('circle').eq(9).attr('r') == '5'
);
```
應該有 10 個 `text` 元素。
```js
assert($('text').length == 10);
```
在使用比例尺後,第一個標籤的 `x` 值應該大約爲 `100``y` 值應該大約爲 `368`
```js
assert(
Math.round($('text').eq(0).attr('x')) == '100' &&
Math.round($('text').eq(0).attr('y')) == '368'
);
```
在使用比例尺後,第二個標籤的 `x` 值應該大約爲 `168``y` 值應該大約爲 `181`
```js
assert(
Math.round($('text').eq(1).attr('x')) == '168' &&
Math.round($('text').eq(1).attr('y')) == '181'
);
```
在使用比例尺後,第三個標籤的 `x` 值應該大約爲 `350``y` 值應該大約爲 `329`
```js
assert(
Math.round($('text').eq(2).attr('x')) == '350' &&
Math.round($('text').eq(2).attr('y')) == '329'
);
```
在使用比例尺後,第四個標籤的 `x` 值應該大約爲 `141``y` 值應該大約爲 `60`
```js
assert(
Math.round($('text').eq(3).attr('x')) == '141' &&
Math.round($('text').eq(3).attr('y')) == '60'
);
```
在使用比例尺後,第五個標籤的 `x` 值應該大約爲 `449``y` 值應該大約爲 `237`
```js
assert(
Math.round($('text').eq(4).attr('x')) == '449' &&
Math.round($('text').eq(4).attr('y')) == '237'
);
```
在使用比例尺後,第六個標籤的 `x` 值應該大約爲 `280``y` 值應該大約爲 `306`
```js
assert(
Math.round($('text').eq(5).attr('x')) == '280' &&
Math.round($('text').eq(5).attr('y')) == '306'
);
```
在使用比例尺後,第七個標籤的 `x` 值應該大約爲 `370``y` 值應該大約爲 `351`
```js
assert(
Math.round($('text').eq(6).attr('x')) == '370' &&
Math.round($('text').eq(6).attr('y')) == '351'
);
```
在使用比例尺後,第八個標籤的 `x` 值應該大約爲 `270``y` 值應該大約爲 `132`
```js
assert(
Math.round($('text').eq(7).attr('x')) == '270' &&
Math.round($('text').eq(7).attr('y')) == '132'
);
```
在使用比例尺後,第九個標籤的 `x` 值應該大約爲 `140``y` 值應該大約爲 `144`
```js
assert(
Math.round($('text').eq(8).attr('x')) == '140' &&
Math.round($('text').eq(8).attr('y')) == '144'
);
```
在使用比例尺後,第十個標籤的 `x` 值應該大約爲 `88``y` 值應該大約爲 `326`
```js
assert(
Math.round($('text').eq(9).attr('x')) == '88' &&
Math.round($('text').eq(9).attr('y')) == '326'
);
```
# --seed--
## --seed-contents--
```html
<body>
<script>
const dataset = [
[ 34, 78 ],
[ 109, 280 ],
[ 310, 120 ],
[ 79, 411 ],
[ 420, 220 ],
[ 233, 145 ],
[ 333, 96 ],
[ 222, 333 ],
[ 78, 320 ],
[ 21, 123 ]
];
const w = 500;
const h = 500;
const padding = 60;
const xScale = d3.scaleLinear()
.domain([0, d3.max(dataset, (d) => d[0])])
.range([padding, w - padding]);
const yScale = d3.scaleLinear()
.domain([0, d3.max(dataset, (d) => d[1])])
.range([h - padding, padding]);
const svg = d3.select("body")
.append("svg")
.attr("width", w)
.attr("height", h);
svg.selectAll("circle")
.data(dataset)
.enter()
.append("circle")
// Add your code below this line
// Add your code above this line
svg.selectAll("text")
.data(dataset)
.enter()
.append("text")
.text((d) => (d[0] + ", "
+ d[1]))
// Add your code below this line
// Add your code above this line
</script>
</body>
```
# --solutions--
```html
<body>
<script>
const dataset = [
[ 34, 78 ],
[ 109, 280 ],
[ 310, 120 ],
[ 79, 411 ],
[ 420, 220 ],
[ 233, 145 ],
[ 333, 96 ],
[ 222, 333 ],
[ 78, 320 ],
[ 21, 123 ]
];
const w = 500;
const h = 500;
const padding = 60;
const xScale = d3.scaleLinear()
.domain([0, d3.max(dataset, (d) => d[0])])
.range([padding, w - padding]);
const yScale = d3.scaleLinear()
.domain([0, d3.max(dataset, (d) => d[1])])
.range([h - padding, padding]);
const svg = d3.select("body")
.append("svg")
.attr("width", w)
.attr("height", h);
svg.selectAll("circle")
.data(dataset)
.enter()
.append("circle")
.attr("cx", (d) => xScale(d[0]))
.attr("cy", (d) => yScale(d[1]))
.attr("r", 5)
svg.selectAll("text")
.data(dataset)
.enter()
.append("text")
.text((d) => (d[0] + ", "
+ d[1]))
.attr("x", (d) => xScale(d[0] + 10))
.attr("y", (d) => yScale(d[1]))
</script>
</body>
```