Alexithemia

Results 51 comments of Alexithemia

I used a calculation to set a zoom value that is based off of how many nodes exist in the graph. With forces being used, the distance the nodes end...

Same here, I think It has something to do with the aligning the text with the link, it does a lot of processing. If you take out the math to...

I think you want to be messing with the .graph-tooltip not the .scene-tooltip.

The only way currently to change the way they draw on the canvas is to change the order they exist in the graphdata link array. But I am not sure...

Try messing around with the link forces, you will want that to be stronger to get the links to pull the nodes the links connect closer to eachother. The nodes...

In most analysis cases it is better to have single direction links for ease of comprehension. Best practice would be to make a link going each way and curve them....

Unfortunately there does not seem to be a way to go upwards like with `api.getParent()` looking through the collapsed children of each edge to find the one that matches wouldn't...

@canbax could a simple `getParentEdge()` function be created or add a reference to the new group edge in the data of the removed edges to easily reach the existing edge?

Because iterating through possibly thousands of edges to check each of it's edges in collapsedEdges is very process heavy, when having a reference to the edge it is collapsed under...

So I am able to just insert a cytoscape node object into the `collapsedChildren` collection? Have you considered making an object map for nodes that are removed when clustered to...