streamlit-agraph
streamlit-agraph copied to clipboard
A Streamlit Graph Vis
When I add nodes or remove them and redraw the graph, the position of the nodes jump, and it redraws in a random configuration. I'd like to be able to...
Hi, When I double-click on a node, I get a "read error" message in a new tab from the browser. I need to assign the "single click" action, that returns...
Hi, Is it possible to get network before render the graph ? I want to recalculate x, y and width for each nodes in terms of edges count
First of all, thank you very much for the great work. I am doing some data analysis on anti-money laundering and also using streamlit-agraph. As you may know, when a...
After I deployed an app with two graphs (one have around 100 nodes and the other 400 nodes) both of them disappeared. They showed up for around 5 mins then...
I am interested in being able to format a hierarchical graph in ways similar to what is available at https://marvelous-graph.streamlit.app/. Does anyone know if there is documentation or sample code...
Currently, the graph can only be edited from the code. Are there any plans to implement a feature where the graphs can be edited to create a custom flow from...
How to turn them on if they are supported at all? I can't find a way to get them work. config = Config( height=1600, width=1000, nodeHighlightBehavior=True, highlightColor="#F7A7A6", directed=True, collapsible=True, #...
Is there a way to extract the node x and y coordinates from a rendered agraph?
currently, I have to force it to str() like below: for _, row in df.iterrows(): edges.append(Edge(source=row['up_node_id'], target=row['down_node_id'], id=row['edge_id'], label=str(row['edge_id'])))