Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

networkx MultiGraph edge weights don't show up #43

Closed
dblarremore opened this issue Jun 6, 2019 · 1 comment
Closed

networkx MultiGraph edge weights don't show up #43

dblarremore opened this issue Jun 6, 2019 · 1 comment

Comments

@dblarremore
Copy link
Owner

Here's a graph with a double-edge from 0 to 1, and a single edge from 1 to 2. The edge weights through the nx version do not show up in webweb.

from webweb import Web
G = nx.MultiGraph()
G.add_edge(0,1)
G.add_edge(0,1)
G.add_edge(1,2)
# create the web
web = Web(nx_G=G)
web.display.scaleLinkWidth = True
# show the visualization
web.show()```
@hneutr
Copy link
Collaborator

hneutr commented Jun 6, 2019

fixed in 0.0.34!

@hneutr hneutr closed this as completed Jun 17, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants