Función D3.js band.step()

La función band.step() en d3.js se usa para encontrar el paso de la banda que se calcula encontrando la distancia entre los inicios de las bandas adyacentes.

Sintaxis: 

band.step()

Parámetros: Esta función no acepta ningún parámetro.

Valor devuelto: Esta función devuelve la distancia entre los inicios de las bandas adyacentes.

Ejemplo 1:

HTML

<!DOCTYPE html>
<html>
  
<head>
    <script src=
"https://d3js.org/d3.v4.min.js">
    </script>
</head>
  
<body>
    <script>
        // Creating the band scale with 
        // specified domain and range
        var A = d3.scaleBand()
            .domain([10, 20, 30, 40, 50])
            .range([0, 10]);
  
        // Using the step() function
        let step_val = A.step();
  
        // Printing the Output  
        console.log("Step Of A: ", step_val);
    </script>
</body>
  
</html>

Producción:

Step Of A:  2

Ejemplo 2:

HTML

<!DOCTYPE html>
<html>
  
<head>
    <script src=
        "https://d3js.org/d3.v4.min.js">
    </script>
</head>
  
<body>
    <script>
        // Creating the band scale with 
        // specified domain and range
        var B = d3.scaleBand()
            .domain(["one", "two",
                "three", "four"])
            .range([0, 60]);
  
        // Using the step() function
        let step_val = B.step();
  
        // Printing the Output  
        console.log("Step in B: ", step_val);
    </script>
</body>
  
</html>

Producción:

Step in B:  15

Publicación traducida automáticamente

Artículo escrito por jana_sayantan 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 *