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
{{ message }}
This repository was archived by the owner on Nov 16, 2025. It is now read-only.
The network graph floats around on each page refresh.
Need to use config builder to lock the network graph in place.
Sample code here:
fromstreamlit_agraph.configimportConfig, ConfigBuilder# 1. Build the config (with sidebar to play with options) .config_builder=ConfigBuilder(nodes)
config=config_builder.build()
# 2. If your done, save the config to a file.config.save("config.json")
# 3. Simple reload from json file (you can bump the builder at this point.)config=Config(from_json="config.json")