I have a simple graph with many dots, so I don’t want to show shortcuts for all of them. But I want to find out what is, using tooltips.
Is it possible to add / display tooltips using networkx?
Here is my code:
import networkx as nx g = nx.Graph() g.add_node(1, label="descriptive label") nx.draw(g)
I would like the “descriptive label” to appear as a tooltip. Any ideas?
python tooltip networkx
Jason sundram
source share