Thursday, January 22, 2026
HomeLanguagesJavascriptD3.js node.data Property

D3.js node.data Property

The D3.js node.data property returns the original object from the data source for which the hierarchy node was created.

Syntax:

node.data 

Return Value: This property returns the original object from the data source for which the hierarchy node was created.

Example 1: Getting the data object from the hierarchy node.

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", "children":[
                      {"name":"GFG2", },
                      {"name":"GFG3", "children":[
                          {"name":"GFG4"},
                          {"name":"GFG5"}]},
                      {"name":"GFG6"}]};
  
        var root = d3.hierarchy(data);
        console.log(root.data)
    </script>
</body>
  
</html>


Output:

Example 2:

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":"neveropen", 
            "about":"Computer Science Portal",
            "children":[{"name":"GFG"}]
          }
        var root = d3.hierarchy(data);
        console.log(root.data)
    </script>
</body>
  
</html>


Output:

Whether you’re preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, neveropen Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we’ve already empowered, and we’re here to do the same for you. Don’t miss out – check it out now!
RELATED ARTICLES

Most Popular

Dominic
32475 POSTS0 COMMENTS
Milvus
119 POSTS0 COMMENTS
Nango Kala
6847 POSTS0 COMMENTS
Nicole Veronica
11977 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12064 POSTS0 COMMENTS
Shaida Kate Naidoo
6986 POSTS0 COMMENTS
Ted Musemwa
7221 POSTS0 COMMENTS
Thapelo Manthata
6934 POSTS0 COMMENTS
Umr Jansen
6912 POSTS0 COMMENTS