Open In App

D3.js | d3.continuous.clamp() Function

Last Updated : 31 Jul, 2019
Improve
Improve
Like Article
Like
Save
Share
Report

The d3.continuous.clamp() function in D3.js is used to enable or disable the clamp. If the clamp is disabled then the range of domain’s value might be out of range but if the clamp is enabled then the range of domain’s value will always be in range.

Syntax:

continuous.clamp( Value )

Parameters: This function accept single parameter Value which is either true or false.

Return Value: This function does not return any value.

Below programs illustrate the d3.continuous.clamp() function in D3.js:

Example 1:




<!DOCTYPE html>
<html>
  
<head>
    <title>
        D3.js | d3.continuous.clamp() Function
    </title>
  
    <script src=
        "https://d3js.org/d3.v4.min.js">
    </script>
</head>
  
<body>
    <script>
  
        // Calling the .scaleLinear() function
        var x = d3.scaleLinear()
            .domain([10, 100])
            .range([0, 5]);
  
        // Calling the .clamp() function          
        x.clamp(false);
  
        // Calling continuous() and .invert() function
        var A = x(6);
        var B = x.invert(10);
        console.log(A);
        console.log(B);
    </script>
</body>
  
</html>


Output:

-0.22222222222222224
190

Example 2:




<!DOCTYPE html>
<html>
  
<head>
    <title>
        D3.js | d3.continuous.clamp() Function
    </title>
  
    <script src=
        "https://d3js.org/d3.v4.min.js">
    </script>
</head>
  
<body>
    <script>
  
        // Calling the .scaleLinear() function
        var x = d3.scaleLinear()
            .domain([10, 100])
            .range([0, 5]);
  
        // Calling the .clamp() function          
        x.clamp(true);
  
        // Calling continuous() and .invert() function
        var A = x(6);
        var B = x.invert(10);
        console.log(A);
        console.log(B);
    </script>
</body>
  
</html>


Output:

0
100

Reference: https://devdocs.io/d3~5/d3-scale#continuous_clamp



Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads