How to create double labelled edges in Graphviz? -


i create more 1 label 1 edge. result i'm interested in looks this:

enter image description here

note edge {0,2} has 2 labels: e , z. 1 above edge, other 1 - below. exact outcome want. how can achieve this?

have tried

digraph g {   graph [ splines = false rankdir="lr" ]   -> b [ label = "foo" ];   -> b [ label = "bar" ]; } 

i've checked using http://www.webgraphviz.com/

result looks like

two labels

taken stackoverflow question graphviz, grouping same edges


Comments

Popular posts from this blog

sequelize.js - Sequelize group by with association includes id -

android - Robolectric "INTERNET permission is required" -

java - Android raising EPERM (Operation not permitted) when attempting to send UDP packet after network connection -