I have a network created through Pyvis library:
nt = Network('900px', '900px')
nt.from_nx(N)
nt.show('plot.html')
Where N is a network from Networkx library. In the last line I create an html file with the plot of the network but when I open it I can't take a screenshot of the entire graph because it is too big and if I try to zoom out, the names of the nodes disappear. Is there a correct way to save the image in Pyxis library?