You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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()```
The text was updated successfully, but these errors were encountered:
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.
The text was updated successfully, but these errors were encountered: