Open
Description
I'm using plotly.express to create some figures and expose them in a streamlit app. One of them is a parallel coordinates plot. However when I select select data from the plot it doesn't return anything.
fig = create_parcoord_plot(plot_data, color_by=color_by_var)
selection = st.plotly_chart(fig, on_select="rerun", use_container_width=True,)
st.write(selection)
I believe some other user have encounter this bug before, but I wasn't able to find a ticket regarding this.
Is there a quick solution?
Thanks!