D3.js中的d3.scaleBand()函数用于构建单位域为[0,1]和单位范围为[0,1]的新身份等级。
用法:
d3.scaleIdentity().domain(array of values).range(array of values);
参数:该函数不接受任何参数。
返回值:此函数返回域值的相应范围。
以下示例程序旨在说明D3.js中的d3.scaleIdentity()函数:
例:
<!DOCTYPE html>
<html>
<head>
<title></title>
<script src="https://d3js.org/d3.v4.min.js">
</script>
</head>
<body>
<script>
// Calling the scaleIdentity() function
var A = d3.scaleIdentity()
.domain([0, 1])
.range([0, 1]);
// Getting the corresponding range for
// the domain value
console.log(A('0'));
console.log(A('1'));
</script>
</body>
</html>
输出:
0 1
参考: https://devdocs.io/d3~5/d3-scale#scaleBand
相关用法
- p5.js second()用法及代码示例
- PHP next()用法及代码示例
- PHP Ds\Set xor()用法及代码示例
- PHP each()用法及代码示例
- p5.js pow()用法及代码示例
- d3.js d3.map.set()用法及代码示例
- CSS url()用法及代码示例
- CSS var()用法及代码示例
- PHP pow( )用法及代码示例
- p5.js day()用法及代码示例
- p5.js hue()用法及代码示例
- PHP Ds\Map put()用法及代码示例
注:本文由纯净天空筛选整理自Kanchan_Ray大神的英文原创作品 D3.js | d3.scaleIdentity() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。