@halloleo wrote:
In the follwoing small Dash app:
df = pd.read_csv(...) fig = px.line(x=.., y=.., color=..., template='presentation') fig.update_traces(mode='lines+markers', hoverinfo='skip') app = dash.Dash(__name__) app.layout = htmlDiv([dcc.Graph(figure=fig)])I still see hover popups on all traces, although I explicitly disable them via
hoverinfo='skip'.Do I have to use a call to another
fig.update_..method? I would like to keep the figure instantiation viafig = px.line(....Thanks for any pointers.
Posts: 1
Participants: 1






