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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。