digraph G {
a -> b [ label = "foo" ];
a -> b [ label = "bar" ];
}
This will create two edges between the ‘a’ and ‘b’ nodes. Is there a way to have only one edge (group them)?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
I think it really depends on what your desired output would be. One possibility is:
Where not using splines draws edges with straight line segments and so duplicate edges will not be distinguished visually.
In your ideal output, what would the single edge look like since there are to be two different labels for it?