Reputation: 1
Here is an example of amchart force directed tree https://www.amcharts.com/demos/force-directed-tree/
Is there any way to remember positions of all nodes and then after page refreshing show it correctly?
Upvotes: 0
Views: 63
Reputation: 21
To store and load any kind of data for a specific webpage, one of the most common ways is using the browser's LocalStorage api. https://developer.mozilla.org/en-US/docs/Web/API/Window/localStorage
Upvotes: 0