D3.js band.bandwidth() Function

The band.bandwidth() function in d3.js is used to find the width of each band.
Syntax:
band.bandwidth()
Parameters: This function does not accept any parameter.
Return Values: This function returns the width of each band.
Example 1:
HTML
<!DOCTYPE html> <html lang = "en">Â
<head>     <meta charset = "UTF-8" />     <meta name = "viewport"        path1tent = "width=device-width,         initial-scale = 1.0"/>     <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]);              // Applying bandwidth() Function        let gfg = A.bandwidth();Â
        // Printing the Output         console.log("Bandwidth Of A: ",gfg);              </script> </body>Â
</html> |
Output:
Bandwidth Of A: 2
Example 2:Â
HTML
<!DOCTYPE html> <html lang = "en"> Â
<head> Â Â Â Â <meta charset = "UTF-8" /> Â Â Â Â <meta name = "viewport"Â Â Â Â Â Â Â Â path1tent = "width=device-width, Â Â Â Â Â Â Â Â initial-scale = 1.0"/> Â Â Â Â <script src = Â Â Â Â </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]);              // Applying bandwidth() Function        let gfg = B.bandwidth();Â
        // Printing the Output         console.log("Bandwidth Of each band in B: ",gfg);     </script> </body>Â
</html> |
Â
 Output:Â
Bandwidth Of each band in B: 15
Whether you’re preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, zambiatek 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!



