Labels don't seem to work on DiGraphs. For example:
g=DiGraph(vertex_labels=True)
g.add_edge(2,3,label="label")
g.show()
This just shows 2 and 3 as labels. Is this a bug or am I doing something wrong?
Thanks in advance.
1 | initial version |
Labels don't seem to work on DiGraphs. For example:
g=DiGraph(vertex_labels=True)
g.add_edge(2,3,label="label")
g.show()
This just shows 2 and 3 as labels. Is this a bug or am I doing something wrong?
Thanks in advance.
2 | retagged |
Labels don't seem to work on DiGraphs. For example:
g=DiGraph(vertex_labels=True)
g.add_edge(2,3,label="label")
g.show()
This just shows 2 and 3 as labels. Is this a bug or am I doing something wrong?
Thanks in advance.
3 | retagged |
Labels don't seem to work on DiGraphs. For example:
g=DiGraph(vertex_labels=True)
g.add_edge(2,3,label="label")
g.show()
This just shows 2 and 3 as labels. Is this a bug or am I doing something wrong?
Thanks in advance.