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


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


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



相关用法


注:本文由纯净天空筛选整理自Kanchan_Ray大神的英文原创作品 D3.js | d3.values() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。