Open In App

D3.js pow.ticks() Function

The pow.ticks() function is used to return the count values from the scale’s domain. The values returned by ticks() lies in the domain. If the count is not given as a parameter then by default it is set to 10.

Syntax:

pow.ticks([count]);

Parameters: This function accepts a single parameter as mentioned above and described below.

Return Values: This function does not return anything.

Below given are a few examples of the function given above.

Example 1:




<!DOCTYPE html> 
<html lang="en"
<head
    <meta charset="UTF-8" /> 
    <meta name="viewport"
        path1tent="width=device-width, 
        initial-scale=1.0"/> 
    <script src=
    </script
    <script src=
    </script
    <script src=
    </script
    <script src=
    </script
</head
<body
    <h2 style="color: green;">Geeks for geeks</h2>
    <p>pow.ticks() Function </p>
    <script
        var pow = d3.scalePow()
            .domain([0, 10])
            .range([0, 10])
            .ticks(8)
        document.write("<h3>"+pow+"</h3>")
    </script
</body
</html>

Output:

Example 2:




<!DOCTYPE html> 
<html lang="en"
<head
    <meta charset="UTF-8" /> 
    <meta name="viewport"
        path1tent="width=device-width, 
        initial-scale=1.0"/> 
    <script src=
    </script
    <script src=
    </script
    <script src=
    </script
    <script src=
    </script
</head
<body
    <h2 style="color: green;">
         Geeks for geeks
    </h2>
    <p>pow.ticks() Function </p>
    <script
        var pow = d3.scalePow()
            .domain([-10, 10])
            .range([0, 10])
            .ticks(12)
        document.write("<h3>"+pow+"</h3>")
    </script
</body
</html>

Output:


Article Tags :