From unknown CodePlex user on Friday, 04 May 2012 01:41:19
Generating dot otuput for graphviz does not add the ports to the node ids. Therefore the graphviz dot.exe is not be able to link the edges to the correct cell.
Format for record based nodes, see: http://www.graphviz.org/content/node-shapes#record
This is the output of quickgraph:
1 -> 3 [ fontname="Arial", fontsize=8, headlabel="A.1", decorate=true, label="PK-1010", taillabel="A.1", headport="P7", tailport="P40"];
This is how it should be:
1:P7 -> 3:P40 [ fontname="Arial", fontsize=8, headlabel="A.1", decorate=true, label="PK-1010", taillabel="A.1", headport="P7", tailport="P40"];
From unknown CodePlex user on Friday, 04 May 2012 01:41:19
Generating dot otuput for graphviz does not add the ports to the node ids. Therefore the graphviz dot.exe is not be able to link the edges to the correct cell. Format for record based nodes, see: http://www.graphviz.org/content/node-shapes#record This is the output of quickgraph: 1 -> 3 [ fontname="Arial", fontsize=8, headlabel="A.1", decorate=true, label="PK-1010", taillabel="A.1", headport="P7", tailport="P40"]; This is how it should be: 1:P7 -> 3:P40 [ fontname="Arial", fontsize=8, headlabel="A.1", decorate=true, label="PK-1010", taillabel="A.1", headport="P7", tailport="P40"];