Created
September 8, 2017 21:33
-
-
Save nixpulvis/b96a545b9f1c5ada2eef309305d7873c to your computer and use it in GitHub Desktop.
D3 Hierarchical Data
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "Root Node", | |
"children": [ | |
{ "name": "Child 1", "children": [] }, | |
{ "name": "Child 2", "children": [ | |
{ "name": "Child 3", "children": [] } | |
]} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment