当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。