D3.js | Función d3.valores()

La función d3.values() en D3.js se usa para devolver una array que contiene los valores de propiedad del objeto especificado o una array asociativa.

Sintaxis:

d3.values(object)

Parámetros: esta función acepta un único objeto de parámetro que contiene los pares de clave y valor.

Valor devuelto: Devuelve los valores del objeto dado.

Los siguientes programas ilustran la función d3.values() en D3.js:

Ejemplo 1:

<!DOCTYPE html>
<html>
  
<head>
    <title>
        d3.values() function
    </title>
      
    <script src = "https://d3js.org/d3.v4.min.js"></script>
</head>
  
<body>
    <script>
      
        // Initialising an object
        var month = {
            "January": 1,
            "February": 2,
            "March": 3,
            "April": 4
        };
            
        // Calling the d3.values() function
        A = d3.values(month);
        
        // Getting the values of the given object
        document.write(A);
    </script>
</body>
  
</html>                    

Producción:

1, 2, 3, 4

Ejemplo 2:

<!DOCTYPE html>
<html>
  
<head>
    <title>
        d3.values() function
    </title>
      
    <script src = "https://d3js.org/d3.v4.min.js"></script>
</head>
  
<body>
    <script>
      
        // Initialising an object
        var month = {
            "GeeksforGeeks": 0,
            "Geeks": 2,
            "Geek": 3,
            "gfg": 4
        };
            
        // Calling the d3.values() function
        A = d3.values(month);
        
        // Getting the values of the given object
        document.write(A);
    </script>
</body>
  
</html>                     

Producción:

0, 2, 3, 4

Referencia: https://devdocs.io/d3~5/d3-collection#values

Publicación traducida automáticamente

Artículo escrito por Kanchan_Ray y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *