* chore(i8n,learn): processed translations * Update curriculum/challenges/chinese/01-responsive-web-design/applied-visual-design/use-the-u-tag-to-underline-text.md Co-authored-by: Randell Dawson <5313213+RandellDawson@users.noreply.github.com> Co-authored-by: Crowdin Bot <support+bot@crowdin.com> Co-authored-by: Nicholas Carrigan (he/him) <nhcarrigan@gmail.com> Co-authored-by: Randell Dawson <5313213+RandellDawson@users.noreply.github.com>
2.7 KiB
2.7 KiB
id, title, challengeType, forumTopicId, dashedName
id | title | challengeType | forumTopicId | dashedName |
---|---|---|---|---|
587d7fa9367417b2b2512bcf | 动态更改每个条形的高度 | 6 | 301486 | dynamically-change-the-height-of-each-bar |
--description--
和动态设置 x
值一样,也可以把每个条形的高度设置成数组中数据点的值。
selection.attr("property", (d, i) => {
})
d
是数据点值,i
是数组中数据点的索引。
--instructions--
改变 height
属性的回调函数,让它返回数据值乘以 3 的值。
注意: 记住,把所有数据点乘以相同的常数来对数据进行缩放(就像放大), 这有利于看清例子中条形数值之间的差异。
--hints--
第一个 rect
的 height
应为 36
。
assert($('rect').eq(0).attr('height') == '36');
第二个 rect
的 height
应为 93
。
assert($('rect').eq(1).attr('height') == '93');
第三个 rect
的 height
应为 66
。
assert($('rect').eq(2).attr('height') == '66');
第四个 rect
的 height
应为 51
。
assert($('rect').eq(3).attr('height') == '51');
第五个 rect
的 height
应为 75
。
assert($('rect').eq(4).attr('height') == '75');
第六个 rect
的 height
应为 54
。
assert($('rect').eq(5).attr('height') == '54');
第七个 rect
的 height
应为 87
。
assert($('rect').eq(6).attr('height') == '87');
第八个 rect
的 height
应为 42
。
assert($('rect').eq(7).attr('height') == '42');
第九个 rect
的 height
应为 27
。
assert($('rect').eq(8).attr('height') == '27');
--seed--
--seed-contents--
<body>
<script>
const dataset = [12, 31, 22, 17, 25, 18, 29, 14, 9];
const w = 500;
const h = 100;
const svg = d3.select("body")
.append("svg")
.attr("width", w)
.attr("height", h);
svg.selectAll("rect")
.data(dataset)
.enter()
.append("rect")
.attr("x", (d, i) => i * 30)
.attr("y", 0)
.attr("width", 25)
.attr("height", (d, i) => {
// Add your code below this line
// Add your code above this line
});
</script>
</body>
--solutions--
<body>
<script>
const dataset = [12, 31, 22, 17, 25, 18, 29, 14, 9];
const w = 500;
const h = 100;
const svg = d3.select("body")
.append("svg")
.attr("width", w)
.attr("height", h);
svg.selectAll("rect")
.data(dataset)
.enter()
.append("rect")
.attr("x", (d, i) => i * 30)
.attr("y", 0)
.attr("width", 25)
.attr("height", (d, i) => {
return d * 3
});
</script>
</body>