Please guide me to a more correct place to ask this question, if here is not the right one.
I have a page designed with streamlit-elements, and I want to add a plot to it. I know how to create this plot with matplotlib, and if I used just pure streamlit, I would just call streamlit.write(figure) to display it. However, this way the image renders above all streamlit_elements, and I want it instead to land within the specific streamlit_elements.mui.Card element.
How can I achieve this, and does it make sense at all?
Please guide me to a more correct place to ask this question, if here is not the right one.
I have a page designed with streamlit-elements, and I want to add a plot to it. I know how to create this plot with
matplotlib
, and if I used just pure streamlit, I would just callstreamlit.write(figure)
to display it. However, this way the image renders above all streamlit_elements, and I want it instead to land within the specificstreamlit_elements.mui.Card
element.How can I achieve this, and does it make sense at all?