* feat(tools): add seed/solution restore script * chore(curriculum): remove empty sections' markers * chore(curriculum): add seed + solution to Chinese * chore: remove old formatter * fix: update getChallenges parse translated challenges separately, without reference to the source * chore(curriculum): add dashedName to English * chore(curriculum): add dashedName to Chinese * refactor: remove unused challenge property 'name' * fix: relax dashedName requirement * fix: stray tag Remove stray `pre` tag from challenge file. Signed-off-by: nhcarrigan <nhcarrigan@gmail.com> Co-authored-by: nhcarrigan <nhcarrigan@gmail.com>
2.8 KiB
2.8 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 is the data point value
* i is the index of the data point in the array
*/
})
--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>