We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This is my tree:
Is it possible to not repeat the treantAss1 node, but rather make it appear once and be referenced directly from: treantAss2 and treantMap2 nodes?
treantAss1
treantAss2
treantMap2
This is JS config:
var treantAss1 = { "text": { "number": "treantAss1" }, "children": [ { "text": { "number": "treantMap1" }, "children": [ { "text": { "number": "treantPN1" } } ] }, { "text": { "number": "treantPN2" } } ] }; var nodeStructure = { "text": { "number": "treantAss3" }, "children": [ { "text": { "number": "treantAss2" }, "children": [ { "text": { "number": "treantPN3" } }, treantAss1 ] }, { "text": { "number": "treantMap2" }, "children": [ treantAss1 ] } ] }; var chart_config = { chart: { rootOrientation: "WEST", container: "#basic-example", animateOnInit: true, node: { collapsable: true }, animation: { nodeAnimation: "easeOutBounce", nodeSpeed: 700, connectorsAnimation: "bounce", connectorsSpeed: 700 } }, nodeStructure: nodeStructure };
The text was updated successfully, but these errors were encountered:
No branches or pull requests
This is my tree:
Is it possible to not repeat the
treantAss1
node, but rather make it appear once and be referenced directly from:treantAss2
andtreantMap2
nodes?This is JS config:
The text was updated successfully, but these errors were encountered: