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:
javascript
Output:
javascript
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>
-0.22222222222222224 190Example 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 100Reference: https://devdocs.io/d3~5/d3-scale#continuous_clamp