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


d3.js node.height用法及代碼示例


D3.js中的node.height屬性返回從給定節點到後代葉子節點的最大距離。

用法:

node.height

返回值:該屬性返回從給定節點到後代葉節點的最大距離

範例1:在此示例中,對於根節點到葉節點,最大距離為1;對於葉節點,最大距離為0。

HTML

<!DOCTYPE html> 
<html> 
  
<head> 
    <meta charset="utf-8"> 
  
    <script src= 
        "https://d3js.org/d3.v5.min.js"> 
    </script> 
</head> 
  
<body> 
    <script> 
        var data = { 
            "name":"GeeksforGeeks",  
            "about":"Computer Science Portal", 
            "children":[ 
                {"name":"GFG1"}, 
                {"name":"GFG2"}, 
                {"name":"GFG3"}, 
                {"name":"GFG4"} 
            ] 
        } 
        var root = d3.hierarchy(data); 
        console.log("Height of root node is:", 
                   root.height); 
        console.log("Height of first children node is:", 
                   root.children[0].height); 
    </script> 
</body> 
  
</html>

輸出:



範例2:在此示例中,層次結構沒有任何子級,因此height為0。

HTML

<!DOCTYPE html> 
<html> 
<head> 
    <meta charset="utf-8"> 
  
    <script src= 
        "https://d3js.org/d3.v5.min.js"> 
    </script> 
</head> 
  
<body> 
    <script> 
        var data = {"name":"GFG1"} 
  
        var root = d3.hierarchy(data); 
  
        console.log("Height of this node is:", 
                    root.height); 
    </script> 
</body> 
  
</html>

輸出:




相關用法


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