Function signature[source] | |
---|---|
st.graphviz_chart(figure_or_dot, use_container_width=False) | |
Parameters | |
figure_or_dot (graphviz.dot.Graph, graphviz.dot.Digraph, str) | The Graphlib graph object or dot string to display |
use_container_width (bool) | If True, set the chart width to the column width. This takes precedence over the figure's native width value. |
Example
import streamlit as st import graphviz # Create a graphlib graph object graph = graphviz.Digraph() graph.edge('run', 'intr') graph.edge('intr', 'runbl') graph.edge('runbl', 'run') graph.edge('run', 'kernel') graph.edge('kernel', 'zombie') graph.edge('kernel', 'sleep') graph.edge('kernel', 'runmem') graph.edge('sleep', 'swap') graph.edge('swap', 'runswap') graph.edge('runswap', 'new') graph.edge('runswap', 'runmem') graph.edge('new', 'runmem') graph.edge('sleep', 'runmem') st.graphviz_chart(graph)Or you can render the chart from the graph using GraphViz's Dot language:
st.graphviz_chart(''' digraph { run -> intr intr -> runbl runbl -> run run -> kernel kernel -> zombie kernel -> sleep kernel -> runmem sleep -> swap swap -> runswap runswap -> new runswap -> runmem new -> runmem sleep -> runmem } ''')