Exploring the implementation of d3s Collapsible tree using a custom node hierarchy. My dataset structure deviates from the norm, for example:
var flare = {
"Name": "Example",
"members": [
{
"BName":"Ja",
"Email":"",
"members":[
{
"NickName":"NC",
"id":2
},
{
"NickName":"Fi",
"id":68
}
],
}
]};
Question: Is it possible to replace 'members' with another name instead of 'children'? I have searched for similar queries but haven't found any matches yet.
Any advice or examples on this matter would be greatly appreciated.