如果给出了域中的值,则使用D3.js中的d3.continuous()函数从范围中返回相应的值。
用法:
d3.scaleLinear().domain(array of values).range(array of values);
参数:该函数不接受任何参数。
返回值:此函数返回域值的相应范围值。
以下程序说明了D3.js中的d3.continuous()函数:
范例1:
<!DOCTYPE html>
<html>
<head>
<title>
D3.js | d3.continuous() Function
</title>
<script src =
"https://d3js.org/d3.v4.min.js">
</script>
</head>
<body>
<script>
// Calling the scaleLinear() function
var A = d3.scaleLinear().domain([10, 50])
.range([0, 100]);
// Getting the corresponding range for
// the domain value
console.log(A('15'));
console.log(A('20'));
console.log(A('25'));
console.log(A('30'));
</script>
</body>
</html>
输出:
12.5 25 37.5 50
范例2:
<!DOCTYPE html>
<html>
<head>
<title>
D3.js | d3.continuous() Function
</title>
<script src =
"https://d3js.org/d3.v4.min.js">
</script>
</head>
<body>
<script>
// Calling the scaleLinear() function
var A = d3.scaleLinear().domain([1, 5])
.range([0, 10]);
// Getting the corresponding range for
// the domain value
console.log(A('1'));
console.log(A('2'));
console.log(A('3'));
console.log(A('4'));
</script>
</body>
</html>
输出:
0 2.5 5 7.5
参考: https://devdocs.io/d3~5/d3-scale#_continuous
相关用法
- p5.js tan()用法及代码示例
- p5.js second()用法及代码示例
- p5.js sin()用法及代码示例
- PHP cos( )用法及代码示例
- CSS var()用法及代码示例
- p5.js day()用法及代码示例
- PHP sin( )用法及代码示例
- PHP pos()用法及代码示例
- PHP key()用法及代码示例
- PHP abs()用法及代码示例
- PHP Ds\Map put()用法及代码示例
- d3.js d3.sum()用法及代码示例
注:本文由纯净天空筛选整理自Kanchan_Ray大神的英文原创作品 D3.js | d3.continuous() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。