Hi, I was wondering if is it possible to have the new unified hovermode working in the case we have subplots
from plotly.subplots import make_subplots
import plotly.graph_objs as go
import plotly.express as px
df = px.data.gapminder().query("continent=='Oceania'")
countries = df["country"].unique()
fig = make_subplots(rows=len(countries), cols=1, shared_xaxes=True)
for i,country in enumerate(countries):
fig.add_trace(go.Scatter(x=df[df["country"]==country]["year"],
y=df[df["country"]==country]["lifeExp"],
name=country),
i+1,1)
fig.update_layout(hovermode="x unified")
fig.show()
Iโve an hovermode in every subplots but Iโd like to have a straight line that go across subplots.