I am using Cytoscape library to make graph, and I am using this settings
layout: {
name: 'cose',
idealEdgeLength: 100,
nodeOverlap: 20,
refresh: 20,
fit: true,
padding: 30,
randomize: false,
componentSpacing: 50,
nodeRepulsion: 400000,
edgeElasticity: 100,
nestingFactor: 5,
gravity: 300,
numIter: 1000,
initialTemp: 200,
coolingFactor: 0.95,
minTemp: 1.0
},
Graph is OK, but edges are intercepting each other sometimes, and I need to refresh a graph several times or rearange it to get good looking graph. Is is possible to force Cytoscape to not intercept edges while rendering it?