Waterfall wrong position of mouse to show hover

Hello.
I have a problem with hover. It does not show when I am over a waterfall bar, but when I move the mouse more to the right, outside the bar, then the info shows. I have tried this in dash and in jupyter notebook with the same error.

Here is the example of code:

import plotly
import plotly.graph_objects as go

fig = go.Figure(go.Waterfall(
name=“waterfall”, orientation=“h”,
measure=[“total”] + [“relative”] * (10 + 1) + [“total”],
y=[‘basevalue’, ‘others’] + [‘a’, ‘b’, ‘c’, ‘d’, ‘q’, ‘w’, ‘e’, ‘r’, ‘t’, ‘z’] + [‘Prediction’],
x=[None, -0.975, -0.047, -0.057, 0.058, 0.061, -0.64, 0.099, 0.235, -0.262, -0.495, -0.603] + [None],
connector={“mode”: “between”, “line”: {“width”: 4, “color”: “rgb(0, 0, 0)”, “dash”: “solid”}},
base=37.413,
decreasing={“marker”: {“color”: ‘rgb(30, 136, 229)’}},
increasing={“marker”: {“color”: ‘rgb(255, 13, 87)’}},
totals={“marker”: {“color”: ‘rgba(255, 255, 255, 0)’}},
textposition=[‘outside’] + [‘auto’] * (10 + 2),
text=['Base value = ’ + ‘37.413’,
-0.975, -0.047, -0.057, 0.058, 0.061, -0.64, 0.099, 0.235, -0.262, -0.495, -0.603] +
[“Prediction = 35.364”],
))

fig.update_layout(
margin={‘t’: 36, ‘b’: 10},
)
fig.update_xaxes(title=‘Prediction Value’)
fig.show()

Please see the images. Notice the mouse position, when the hover information is displayed and when it is not.