freeCodeCamp/curriculum/challenges/chinese/04-data-visualization/data-visualization-with-d3/style-d3-labels.chinese.md

1.8 KiB
Raw Blame History

id title challengeType videoUrl localeTitle
587d7faa367417b2b2512bd3 Style D3 Labels 6 风格D3标签

Description

D3方法可以为条形标签添加样式。 fill属性设置text节点的文本颜色。 style()方法为其他样式设置CSS规则例如“font-family”或“font-size”。

Instructions

text元素的font-size设置为25px将文本颜色设置为红色。

Tests

tests:
  - text: 标签应该都具有红色的<code>fill</code>颜色。
    testString: assert($('text').css('fill') == 'rgb(255, 0, 0)');
  - text: 标签应该都具有25像素的<code>font-size</code> 。
    testString: assert($('text').css('font-size') == '25px');

Challenge Seed

<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", (d, i) => h - 3 * d)
       .attr("width", 25)
       .attr("height", (d, i) => d * 3)
       .attr("fill", "navy");

    svg.selectAll("text")
       .data(dataset)
       .enter()
       .append("text")
       .text((d) => d)
       .attr("x", (d, i) => i * 30)
       .attr("y", (d, i) => h - (3 * d) - 3)
       // Add your code below this line



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

Solution

// solution required