2

I want to draw a directed graph with Python library Networkx, the problem is that when I have a connection from Node1 to Node1, and back from Node2 to Node2, their labels are overwritten.

Is there a method to draw curves from one node to another, or a way to configure labels position?

In screenshot you can see that I have two directed lines but only one label, second label is over first.

0x3d
  • 460
  • 1
  • 8
  • 27

1 Answers1

1

It was resolved with label_pos=0.2

Back2Basics
  • 7,406
  • 2
  • 32
  • 45