freeCodeCamp/curriculum/challenges/chinese/04-data-visualization/data-visualization-with-d3/change-the-presentation-of-...

3.7 KiB
Raw Blame History

id title challengeType videoUrl localeTitle
587d7fa8367417b2b2512bca Change the Presentation of a Bar Chart 6 更改条形图的演示文稿

Description

最后一个挑战创建了一个条形图但有几个格式更改可以改善它1在每个条之间添加空格以在视觉上分隔它们这是通过为bar类添加边距来完成的2增加条形的高度可以更好地显示值的差异这可以通过将值乘以数字来缩放高度来完成

Instructions

首先,在style标记的bar类中添加2px的margin 。接下来,更改style()方法中的回调函数使其返回原始数据值的10倍加上“px”注意
将每个数据点乘以相同的常数只会改变比例。它就像放大一样,并没有改变底层数据的含义。

Tests

tests:
  - text: 第一个<code>div</code>的<code>height</code>应为120像素 <code>margin</code>为2像素。
    testString: assert($('div').eq(0).css('height') == '120px' && $('div').eq(0).css('margin-right') == '2px');
  - text: 第二个<code>div</code>的<code>height</code>应为310像素 <code>margin</code>为2像素。
    testString: assert($('div').eq(1).css('height') == '310px' && $('div').eq(1).css('margin-right') == '2px');
  - text: 第三个<code>div</code>的<code>height</code>应为220像素 <code>margin</code>为2像素。
    testString: assert($('div').eq(2).css('height') == '220px' && $('div').eq(2).css('margin-right') == '2px');
  - text: 第四个<code>div</code>的<code>height</code>应为170像素 <code>margin</code>为2像素。
    testString: assert($('div').eq(3).css('height') == '170px' && $('div').eq(3).css('margin-right') == '2px');
  - text: 第五个<code>div</code>的<code>height</code>应为250像素 <code>margin</code>为2像素。
    testString: assert($('div').eq(4).css('height') == '250px' && $('div').eq(4).css('margin-right') == '2px');
  - text: 第六个<code>div</code>的<code>height</code>应为180像素 <code>margin</code>为2像素。
    testString: assert($('div').eq(5).css('height') == '180px' && $('div').eq(5).css('margin-right') == '2px');
  - text: 第七个<code>div</code>的<code>height</code>应为290像素 <code>margin</code>为2像素。
    testString: assert($('div').eq(6).css('height') == '290px' && $('div').eq(6).css('margin-right') == '2px');
  - text: 第八个<code>div</code>的<code>height</code>应为140像素 <code>margin</code>为2像素。
    testString: assert($('div').eq(7).css('height') == '140px' && $('div').eq(7).css('margin-right') == '2px');
  - text: 第九个<code>div</code>的<code>height</code>应为90像素 <code>margin</code>为2像素。
    testString: assert($('div').eq(8).css('height') == '90px' && $('div').eq(8).css('margin-right') == '2px');

Challenge Seed

<style>
  .bar {
    width: 25px;
    height: 100px;
    /* Add your code below this line */

    /* Add your code above this line */
    display: inline-block;
    background-color: blue;
  }
</style>
<body>
  <script>
    const dataset = [12, 31, 22, 17, 25, 18, 29, 14, 9];

    d3.select("body").selectAll("div")
      .data(dataset)
      .enter()
      .append("div")
      .attr("class", "bar")
      // Add your code below this line
      .style("height", (d) => (d + "px"))

      // Add your code above this line
  </script>
</body>

Solution

// solution required