freeCodeCamp/curriculum/challenges/spanish/04-data-visualization/data-visualization-with-d3/work-with-dynamic-data-in-d...

3.9 KiB

id title challengeType videoUrl localeTitle
587d7fa7367417b2b2512bc5 Work with Dynamic Data in D3 6 Trabajar con datos dinámicos en D3

Description

Los dos últimos desafíos cubren los aspectos básicos de mostrar datos dinámicamente con D3 usando los métodos data() y enter() . Estos métodos toman un conjunto de datos y, junto con el método append() , crean un nuevo elemento DOM para cada entrada en el conjunto de datos. En el desafío anterior, creó un nuevo elemento h2 para cada elemento en la matriz del dataset , pero todos contenían el mismo texto, "Título nuevo". Esto se debe a que no ha utilizado los datos vinculados a cada uno de los elementos h2 . El método D3 text() puede tomar una cadena o una función de devolución de llamada como un argumento: selection.text((d) => d) En el ejemplo anterior, el parámetro d refiere a una sola entrada en el conjunto de datos que una selección está vinculada a. Utilizando el ejemplo actual como contexto, el primer elemento h2 está vinculado a 12, el segundo elemento h2 está vinculado a 31, el tercer elemento h2 está vinculado a 22, y así sucesivamente.

Instructions

Cambie el método text() para que cada elemento h2 muestre el valor correspondiente de la matriz del dataset con un solo espacio y "USD". Por ejemplo, el primer encabezado debe ser "12 USD".

Tests

tests:
  - text: El primer <code>h2</code> debe tener el texto &quot;12 USD&quot;.
    testString: 'assert($("h2").eq(0).text() == "12 USD", "The first <code>h2</code> should have the text "12 USD".");'
  - text: El segundo <code>h2</code> debe tener el texto &quot;31 USD&quot;.
    testString: 'assert($("h2").eq(1).text() == "31 USD", "The second <code>h2</code> should have the text "31 USD".");'
  - text: El tercer <code>h2</code> debe tener el texto &quot;22 USD&quot;.
    testString: 'assert($("h2").eq(2).text() == "22 USD", "The third <code>h2</code> should have the text "22 USD".");'
  - text: El cuarto <code>h2</code> debe tener el texto &quot;17 USD&quot;.
    testString: 'assert($("h2").eq(3).text() == "17 USD", "The fourth <code>h2</code> should have the text "17 USD".");'
  - text: El quinto <code>h2</code> debe tener el texto &quot;25 USD&quot;.
    testString: 'assert($("h2").eq(4).text() == "25 USD", "The fifth <code>h2</code> should have the text "25 USD".");'
  - text: El sexto <code>h2</code> debe tener el texto &quot;18 USD&quot;.
    testString: 'assert($("h2").eq(5).text() == "18 USD", "The sixth <code>h2</code> should have the text "18 USD".");'
  - text: El séptimo <code>h2</code> debe tener el texto &quot;29 USD&quot;.
    testString: 'assert($("h2").eq(6).text() == "29 USD", "The seventh <code>h2</code> should have the text "29 USD".");'
  - text: El octavo <code>h2</code> debe tener el texto &quot;14 USD&quot;.
    testString: 'assert($("h2").eq(7).text() == "14 USD", "The eighth <code>h2</code> should have the text "14 USD".");'
  - text: El noveno <code>h2</code> debe tener el texto &quot;9 USD&quot;.
    testString: 'assert($("h2").eq(8).text() == "9 USD", "The ninth <code>h2</code> should have the text "9 USD".");'

Challenge Seed

<body>
  <script>
    const dataset = [12, 31, 22, 17, 25, 18, 29, 14, 9];

    d3.select("body").selectAll("h2")
      .data(dataset)
      .enter()
      .append("h2")
      // Add your code below this line

      .text("New Title");

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

Solution

// solution required