freeCodeCamp/curriculum/challenges/chinese/04-data-visualization/data-visualization-with-d3/dynamically-change-the-heig...

2.7 KiB

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--

第一个 rectheight 应为 36

assert($('rect').eq(0).attr('height') == '36');

第二个 rectheight 应为 93

assert($('rect').eq(1).attr('height') == '93');

第三个 rectheight 应为 66

assert($('rect').eq(2).attr('height') == '66');

第四个 rectheight 应为 51

assert($('rect').eq(3).attr('height') == '51');

第五个 rectheight 应为 75

assert($('rect').eq(4).attr('height') == '75');

第六个 rectheight 应为 54

assert($('rect').eq(5).attr('height') == '54');

第七个 rectheight 应为 87

assert($('rect').eq(6).attr('height') == '87');

第八个 rectheight 应为 42

assert($('rect').eq(7).attr('height') == '42');

第九个 rectheight 应为 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>