当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


d3.js d3.continuous.clamp()用法及代码示例


D3.js中的d3.continuous.clamp()函数用于启用或禁用钳位。如果禁用钳位,则域值的范围可能超出范围,但是如果启用钳位,则域值的范围将始终在范围之内。

用法:

continuous.clamp( Value )

参数:该函数接受单个参数值,该值可以为true或false。


返回值:该函数不返回任何值。

以下程序说明了D3.js中的d3.continuous.clamp()函数:

范例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
190

范例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>

输出:

0
100

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



相关用法


注:本文由纯净天空筛选整理自Kanchan_Ray大神的英文原创作品 D3.js | d3.continuous.clamp() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。