I have this code:
fig_zoom = px.scatter(df5
, x = “time”
, y = ‘value’
, color = ‘variable’
, symbol = ‘variable’
#, hover_name = “Device”
, opacity = 0.5
, template = ‘plotly_dark’
, title = device_name
, color_discrete_map = {“I_A”: ‘orangered’, “I_fil” : ‘lawngreen’, “V+” : “dodgerblue”, “V-” : “chocolate”}
)
fig_zoom.update_traces(marker = dict(
size = 5
)
)
fig_zoom.update_layout(
transition_duration = 500
, autosize = True
, height = 600
, hovermode=‘x unified’
)
and I would like to have the info graphic emerging at the cursor on the left side instead of the right side. Is this possible?