kinimesi
kinimesi
@hotpeperoncino one way of saving collapsed nodes is the following. First you need to get all collapsed children in the graph. In v3.0.11, you can use `getAllCollapsedChildrenRecursively` method. Then take...
@stklik First define the compounds which are collapsed by adding an attribute to their data field - for example `"collapse" : true`. No need to do this for expanded compounds....
@manotoor you can achieve this functionality by overriding `api.isExpandable` and `api.isCollapsible` functions. The current node is provided as an argument to these functions. https://github.com/iVis-at-Bilkent/cytoscape.js-expand-collapse/blob/8a2e4157def5613e0e477e393dc2c0720e41c032/src/index.js#L117 https://github.com/iVis-at-Bilkent/cytoscape.js-expand-collapse/blob/8a2e4157def5613e0e477e393dc2c0720e41c032/src/index.js#L122
@earx If I understood correctly, you are trying to show/hide a context menu item depending on expanded/collapsed state of a node. This can be done by using selectors. See: https://github.com/iVis-at-Bilkent/newt/blob/2c7697db7e613f43dcb5de94003a1573c35b3760/app/js/app-cy.js#L124...
This feature is exposes `wheelSensitivity` option which is one of the initialization parameters of the Cytoscape.js. This is very similar to the other initialization parameters that dash-cytoscape already has such...
@kubitre why don't you just set the background color of cytoscape div?
@kubitre I'm sorry, but I think it's redundant to have such an option in this extension while the same feature can be achieved by just setting the CSS background color...
@ugurdogrusoz This is not related to saving/loading hidden neighbor. When C is collapsed, it is connected to B with meta-edges. If you hide B, the border of C gets thick...
@ugurdogrusoz The main problem is when to clear the guidelines: too quick - user can't see them clearly, little slower - they become annoying (like tooltips). We will need to...
Hi, could you please provide a simple example that reproduces the issue? You could check the provided demos [here](https://kinimesi.github.io/cytoscape-svg/) which works as expected.