Hi,
I have created a graph using python 'networkx' and saved the graph in 'graphml' format. I am using YeD to display the graph for better representation.
However the graph is very big and need to zoom in to view the nodes properly.
Problem is, in this graph I need to display a complete path from 'node-Start' to 'node-End' which go through intermediate nodes, like this :
node-Start ==> node-X ==> node-Y ==> node-End
I want when I select the edge between (node-Start, node-X), it should highlight the entire path as shown above.
Is it possible to achieve in YeD ?
Thanks!