Saturday, September 21, 2024
Google search engine
HomeLanguagesJavascriptD3.js band.step() Function

D3.js band.step() Function

The band.step() function in d3.js is used to find the step of the band which is calculated by finding the distance between the starts of adjacent bands.

Syntax: 

band.step()

Parameters: This function does not accept any parameter.

Return Value: This function returns the distance between the starts of adjacent bands.

Example 1:

HTML




<!DOCTYPE html>
<html>
  
<head>
    <script src=
    </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>


Output:

Step Of A:  2

Example 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>


Output:

Step in B:  15

Whether you’re preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, neveropen Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we’ve already empowered, and we’re here to do the same for you. Don’t miss out – check it out now!

RELATED ARTICLES

Most Popular

Recent Comments