當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


d3.js d3.set.values()用法及代碼示例


D3.js中的set.values()函數用於返回集合中的字符串值的數組。此函數可用於計算一組字符串的唯一值。

用法:

d3.set([Array]).values();

參數:此函數接受字符串參數數組。


返回值:它返回給定數組元素的唯一元素數組。

以下程序說明了D3.js中的d3.set.values()函數:
示例1:

<!DOCTYPE html> 
<html> 
   
<head> 
    <title>d3.set.values() Function</title> 
       
    <script src='https://d3js.org/d3.v4.min.js'></script> 
</head> 
<body> 
  
  <script> 
      
     // Initialising an array 
     Array1 = ["a", "a", "b", "c"]; 
     Array2 = ["c", "c", "c"]; 
     Array3 = ["Geeks", "gfg", "GeeksforGeeks"]; 
       
     // Calling the d3.set.values() function 
     A = d3.set(Array1).values(); 
     B = d3.set(Array2).values(); 
     C = d3.set(Array3).values(); 
       
     // Getting the unique values of the set 
     console.log(A); 
     console.log(B); 
     console.log(C); 
  </script> 
</body> 
</html>

輸出:

["a", "b", "c"]
["c"]
["Geeks", "gfg", "GeeksforGeeks"]

示例2:

<!DOCTYPE html> 
<html> 
    
<head> 
    <title>d3.set.values() Function</title> 
        
    <script src='https://d3js.org/d3.v4.min.js'></script> 
</head> 
<body> 
    
  <script> 
       
     // Calling the d3.set.values() function 
     // with a array parameter 
     A = d3.set([1, 2, 3, 3]).values(); 
     B = d3.set(["a"]).values(); 
     C = d3.set(["a", "b", "c", "a", "b", "c"]).values(); 
       
     // Getting the unique values of the set 
     console.log(A); 
     console.log(B); 
     console.log(C); 
  </script> 
</body> 
</html>

輸出:

["1", "2", "3"]
["a"]
["a", "b", "c"]

參考: https://devdocs.io/d3~5/d3-collection#set_values



相關用法


注:本文由純淨天空篩選整理自Kanchan_Ray大神的英文原創作品 D3.js | d3.set.values() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。