I want to use Dash to make charts and tables and display them on my Streamlit Dashboard.
I’m currently using Plotly Graph Objects (go.Table to make tables) but I would like to try using Dash to make the tables but display them on my Streamlit dashboard.
Is that possible or does Dash only work as a dashboard of its own?
Dash is a framework comparable to streamlit
plot.ly is a charting library
the python version being a wrapper around the JS version.
Plot.ly and Dash come from same team.
plotly express is also great for simpler charts
here is some code from my app that uses plotly express
sunburst = px.sunburst(df, path=[px.Constant(“all”), “labs”], values=df[“nbr”])
st.plotly_chart( sunburst )
or just have sunburst in the line and streamlit will deal with it.