eisman / neo4jd3

Neo4j graph visualization using D3.js
https://eisman.github.io/neo4jd3/
MIT License
1.37k stars 422 forks source link

Is it possible to register callback for graph loaded #37

Open mallikarjunaj opened 6 years ago

mallikarjunaj commented 6 years ago

After fully completion of graph loads, I want to call a callback function which I passed

Degooya commented 5 years ago

add this to the force simulation

.on("end", () =>{
    // some code
});