Wraps plotly express function and adds cross filtering support.
Instead of plotly.express' you can use
solara.express` instead.
# import plotly.express as px
import solara.express as px
df = px.data.iris()
px.histogram(df, "species")
px.scatter(df, x="sepal_width", y="sepal_length", color="species")
Click the lasso icon in the top scatter plot to select points, which should then be filtered out in the other plots.
Example