Reputation: 5618
I am using Vis.js network to show graphs and was wondering if there's a specific finishedLoading
event for the object?
Any ideas?
Upvotes: 0
Views: 398
Reputation: 862
you can use the event afterDrawing, here is the documentation.
myNetwork.on('afterDrawing', function(){ console.log('afterDrawing');});
Upvotes: 1