I created a graph with a few nodes. Used the 'Hierarchical Tree (R-T Extended)' layout. I exported the graph to .gml to use in another system. The nodes have negative coordinates; Is there a way to avoid this?
I guess by that I mean avoid using cartesian coordinates
If you want to modify node coordinates to be all positive, you can do a layout translation
using Python. Simply enter those instructions in the Tulip Python REPL:
I created a graph with a few nodes. Used the 'Hierarchical Tree (R-T Extended)' layout. I exported the graph to .gml to use in another system. The nodes have negative coordinates; Is there a way to avoid this?
I guess by that I mean avoid using cartesian coordinates
Last edit: hasii 2020-03-24
If you want to modify node coordinates to be all positive, you can do a layout translation
using Python. Simply enter those instructions in the Tulip Python REPL:
This works like a champ. Thank you very much