D3.js中的d3.values()函數用於返回包含指定對象或關聯數組的屬性值的數組。
用法:
d3.values(object)
參數:該函數接受包含鍵,值對的單個參數對象。
返回值:它返回給定對象的值。
以下程序說明了D3.js中的d3.values()函數:
示例1:
<!DOCTYPE html>
<html>
<head>
<title>
d3.values() function
</title>
<script src = "https://d3js.org/d3.v4.min.js"></script>
</head>
<body>
<script>
// Initialising an object
var month = {
"January": 1,
"February": 2,
"March": 3,
"April": 4
};
// Calling the d3.values() function
A = d3.values(month);
// Getting the values of the given object
document.write(A);
</script>
</body>
</html>
輸出:
1, 2, 3, 4
示例2:
<!DOCTYPE html>
<html>
<head>
<title>
d3.values() function
</title>
<script src = "https://d3js.org/d3.v4.min.js"></script>
</head>
<body>
<script>
// Initialising an object
var month = {
"GeeksforGeeks": 0,
"Geeks": 2,
"Geek": 3,
"gfg": 4
};
// Calling the d3.values() function
A = d3.values(month);
// Getting the values of the given object
document.write(A);
</script>
</body>
</html>
輸出:
0, 2, 3, 4
參考: https://devdocs.io/d3~5/d3-collection#values
相關用法
- PHP each()用法及代碼示例
- p5.js day()用法及代碼示例
- p5.js int()用法及代碼示例
- p5.js second()用法及代碼示例
- PHP dir()用法及代碼示例
- PHP each()用法及代碼示例
- p5.js arc()用法及代碼示例
- d3.js d3.hcl()用法及代碼示例
- PHP Ds\Map put()用法及代碼示例
- d3.js d3.lab()用法及代碼示例
- d3.js d3.max()用法及代碼示例
- p5.js str()用法及代碼示例
注:本文由純淨天空篩選整理自Kanchan_Ray大神的英文原創作品 D3.js | d3.values() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。