var data = { label: 'Total', amount: 100,
children: [
{ taxonomy: 'cofog', name:'01', label: 'First child', amount: 30 },
{ taxonomy: '02', label: 'Second child', amount: 40 },
{ label: 'Third child', amount: 30, color: '#ff3300',
children: [
{ label: 'First child of Third', amount: 20, color: '#ff4400' },
{ label: 'Second child of Third', amount: 10, color: '#ff4400' }
]}
]};
If delete one children root, for example: node{label:'First child'}, cant navigate into children's of node{label: 'Third child''}
(Sorry for the code format, no white spaces preserved)
If delete one children root, for example: node{label:'First child'}, cant navigate into children's of node{label: 'Third child''}
(Sorry for the code format, no white spaces preserved)