I have the following json for HyperTree
var json = {
"id": "347_0",
"name": "AAA",
"children": [{
"id": "126510_1",
"name": "BBB",
"data": {
"band": "BBB",
"relation": "Subscriber"
},
"children": []
}, {...
After I change the line type to arrow, there is an arrow pointing from AAA -> BBB. But I want the arrow direction is from BBB -> AAA.
Do you have any idea on how to implement it?