WestHealth / pyvis

Python package for creating and visualizing interactive network graphs.
http://pyvis.readthedocs.io/en/latest/
BSD 3-Clause "New" or "Revised" License
940 stars 162 forks source link

graph title not shown/displayed with or without hovering, after passing it in nt.add_edge() in a loop #247

Open vivekpadman opened 10 months ago

vivekpadman commented 10 months ago

Code snippet below: for e in tqdm(our_new_edges): title_1 = 'just a normal edge' input(f'title recieved here is :{title_1}') nt.add_edge(e[0], e[1], value = 2, title = title_1,

color = "orange" if "span" in e[2].get('title', "just a normal edge") else "blue"

            )