El Dude
El Dude

Reputation: 5618

Vis.js network ready function?

I am using Vis.js network to show graphs and was wondering if there's a specific finishedLoadingevent for the object?

Any ideas?

Upvotes: 0

Views: 398

Answers (1)

TERMIN
TERMIN

Reputation: 862

you can use the event afterDrawing, here is the documentation.

  myNetwork.on('afterDrawing', function(){ console.log('afterDrawing');});

Upvotes: 1

Related Questions