d3.js中的pow.clamp()函數用於啟用鉗位或僅在指定了鉗位的情況下禁用鉗位。如果禁用鉗位,則返回值的範圍可能超出給定範圍。
用法:
pow.clamp(clamp);
屬性值:該函數接受上麵給出的和下麵描述的單個參數。
- clamp:它接受布爾值true或false。
下麵給出的是上麵給出的函數的一些例子。
範例1:當鉗位設置為假時。
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport"
path1tent="width=device-width,
initial-scale=1.0"/>
<script src=
"https://d3js.org/d3.v4.min.js">
</script>
<script src=
"https://d3js.org/d3-color.v1.min.js">
</script>
<script src=
"https://d3js.org/d3-interpolate.v1.min.js">
</script>
<script src=
"https://d3js.org/d3-scale-chromatic.v1.min.js">
</script>
</head>
<body>
<h2 style="color:green;">
Geeks for geeks
</h2>
<p>pow.clamp() Function </p>
<script>
// Calling the .scalePow() function
var x = d3.scalePow()
.domain([10, 100])
.range([0, 5])
.clamp(false);
// Calling pow() and .invert() function
var a = x(2);
var b = x.invert(15);
document.write("<h3>"+a+"</h3>");
document.write("<h3>"+b+"</h3>");
</script>
</script>
</body>
</html>
輸出:
範例2:鉗位設置為true時。
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport"
path1tent="width=device-width,
initial-scale=1.0"/>
<script src=
"https://d3js.org/d3.v4.min.js">
</script>
<script src=
"https://d3js.org/d3-color.v1.min.js">
</script>
<script src=
"https://d3js.org/d3-interpolate.v1.min.js">
</script>
<script src=
"https://d3js.org/d3-scale-chromatic.v1.min.js">
</script>
</head>
<body>
<h2 style="color:green;">Geeks for geeks</h2>
<p>pow.clamp() Function </p>
<script>
// Calling the .scalePow() function
var x = d3.scalePow()
.domain([10, 100])
.range([0, 5])
.clamp(true);
// Calling pow() and .invert() function
var a = x(12);
var b = x.invert(15);
var c = x.invert(150);
document.write("<h3>"+a+"</h3>");
document.write("<h3>"+b+"</h3>");
document.write("<h3>"+c+"</h3>");
</script>
</script>
</body>
</html>
輸出:
相關用法
- PHP Ds\Set add()用法及代碼示例
- PHP each()用法及代碼示例
- PHP Ds\Map put()用法及代碼示例
- PHP Ds\Set first()用法及代碼示例
- PHP Ds\Set last()用法及代碼示例
- d3.js d3.map.set()用法及代碼示例
- p5.js pan()用法及代碼示例
- p5.js value()用法及代碼示例
- PHP Ds\Map xor()用法及代碼示例
- PHP Ds\Set contains()用法及代碼示例
- PHP Ds\Set xor()用法及代碼示例
- d3.js lch()用法及代碼示例
- d3.js d3.max()用法及代碼示例
- p5.js hue()用法及代碼示例
- p5.js min()用法及代碼示例
- p5.js red()用法及代碼示例
注:本文由純淨天空篩選整理自tarun007大神的英文原創作品 D3.js pow.clamp() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。