Hello!
Last days I was developping a couple of subplots in my Dash app.
I had a problem when I try to see data with hoverinfo.
The data displayed is the desired one but it seems that the mouse position isn’t right.
As you can see in the gif, the mouse position seems to be out of place. I’m having a discrepance in both (x and y position) positions in almost every subplot.
I can see the top two of them.
Almost every scatter is like this one:
go.Scatter(x=new_df['realdate'],
y=new_df['DCR_CS'],
name=cell,
legendgroup=cell,
line={'color': 'rgb{}'.format(col)},
mode='lines',
showlegend=True)
Excepts the showlegend that is false for every one of them except the first one (I want only one legend for all subplots).
My layout is:
# Constants for plots
LAYOUT = {'height': 900,
'showlegend': True,
'plot_bgcolor': 'white',
'paper_bgcolor': 'white'}
Lots of Thanks!