Tim Brunson

Results 5 comments of Tim Brunson

Ok, so, it seems like the issue is that this sets the layout before all of the elements are added. If I store the instance of cytoscape and reset the...

I have solved it by adding a button and clicking it after I ensure the cy-element for loop has ended. Is there a way I can tell programmatically when the...

I have ran a pretty thorough debug and the issue seems to be either: 1. The nodes have not loaded during the :afterCreated Directive. 2. There is an issue between...

ok. This is how I fixed it. I removed the cy-element v-for loop to add all of the elements and added this code: ``` afterCreated(cy) { this.cy = cy; this.addInitialNodes();...