streamlit-agraph
streamlit-agraph copied to clipboard
A Streamlit Graph Vis
https://observablehq.com/@d3/force-directed-tree
# Requirement So far, interactions with the graph are fixed. And I wish to add tooltip and customizations to interactions. Interaction | Current design | Proposal -- | -- |...
Nodes might have a specific class e.g. Person. They should be displayed in another color.
Build a sidebar on the right-handside to modify the graphs setting with parameters e.g. - node colors - node size - general config (as shown in demo of the react-d3-graph)
- k-core - pagerank - shortest path - clustering tbc.
config parameter, "directed = False" does work. It's always True.
# Currently not workin since update to agraph 2.0 - work in progress from rdflib import Graph from streamlit_agraph import TripleStore, agraph graph = Graph() graph.parse("http://www.w3.org/People/Berners-Lee/card") store = TripleStore() for...
Was experimenting around with this library when I found an issue introduced in version 0.0.40. Works in 0.0.37, screenshots below. Seems like some change made in version 0.0.40 causes nodes...
I am a bit new to the node and nodejs. While I tried to build frontend myself, I encounter following error. Would appreciate some help. Thanks! I tried to `npm...
Hi, hope you are doing well. Is there any way to define a certain action that happens when a user double-clicks on a node? For example, when a user double-clicks...