freeCodeCamp/curriculum/challenges/portuguese/04-data-visualization/data-visualization-with-d3/add-a-tooltip-to-a-d3-eleme...

3.5 KiB

id title challengeType forumTopicId dashedName
587d7faa367417b2b2512bd6 Adicionar uma dica a um elemento D3 6 301470 add-a-tooltip-to-a-d3-element

--description--

Uma dica mostra mais informações sobre um item em uma página quando o usuário passa o mouse por cima do item. Existem várias maneiras de adicionar uma dica a uma visualização. Este desafio usa o elemento SVG title.

title está junto com o método text() para adicionar dinamicamente dados às barras.

--instructions--

Acrescente um elemento title sob cada nó de rect. Em seguida, chame o método text() com uma função de callback para que o texto mostre o valor dos dados.

--hints--

O código deve ter 9 elementos title.

assert($('title').length == 9);

O primeiro elemento title deve ter o texto de dica 12.

assert($('title').eq(0).text() == '12');

O segundo elemento title deve ter o texto de dica 31.

assert($('title').eq(1).text() == '31');

O terceiro elemento title deve ter o texto de dica 22.

assert($('title').eq(2).text() == '22');

O quarto elemento title deve ter o texto de dica 17.

assert($('title').eq(3).text() == '17');

O quinto elemento title deve ter o texto de dica 25.

assert($('title').eq(4).text() == '25');

O sexto elemento title deve ter o texto de dica 18.

assert($('title').eq(5).text() == '18');

O sétimo elemento title deve ter o texto de dica 29.

assert($('title').eq(6).text() == '29');

O oitavo elemento title deve ter o texto de dica 14.

assert($('title').eq(7).text() == '14');

O nono elemento title deve ter o texto de dica 9.

assert($('title').eq(8).text() == '9');

--seed--

--seed-contents--

<style>
  .bar:hover {
    fill: brown;
  }
</style>
<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")
       .attr("class", "bar")
       // Add your code below this line



       // Add your code above this line

    svg.selectAll("text")
       .data(dataset)
       .enter()
       .append("text")
       .text((d) => d)
       .attr("x", (d, i) => i * 30)
       .attr("y", (d, i) => h - (d * 3 + 3))

  </script>
</body>

--solutions--

<style>
  .bar:hover {
    fill: brown;
  }
</style>
<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")
       .attr("class", "bar")
       .append("title")
       .text((d) => d)


    svg.selectAll("text")
       .data(dataset)
       .enter()
       .append("text")
       .text((d) => d)
       .attr("x", (d, i) => i * 30)
       .attr("y", (d, i) => h - (d * 3 + 3))

  </script>
</body>