imohitmayank / jaal

Your interactive network visualizing dashboard
MIT License
321 stars 41 forks source link

Allow the user to pass in visdcc.Network options. #15

Closed Olshansk closed 3 years ago

Olshansk commented 3 years ago

Use the existing options as a default, but allow the user to update the options map for more customizability.

Tested like so:

# import
from jaal import Jaal
from jaal.datasets import load_got
# load the data
edge_df, node_df = load_got()
# init Jaal and run server
Jaal(edge_df, node_df).plot(vis_opts={'height': '1000px'})
imohitmayank commented 3 years ago

Thnx for the PR. It will add a lot of flexibility for the advanced users!