D3.js node.propiedad de profundidad
La propiedad D3.js node. depth devuelve Sintaxis: node.depth Valor devuelto: esta propiedad devuelve Ejemplo 1: 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(root.children[0].depth); </script> </body> </html> … Continue reading «D3.js node.propiedad de profundidad»