Rangeselector position - relation to subplots

Hi there,
I’ve graph with several subplots.
I’ve added rangeselector, however the position is too up.
I’ve checked this manual:

However, it doesn’t seem to work.
fig[‘layout’][‘xaxis’].update(anchor = ‘y’,
rangeselector=dict(
x = 1,
y = 1,
buttons=list([
dict(count=1,
label=‘1d’,
step=‘day’,
stepmode=‘backward’),
dict(count=7,
label=‘1w’,
step=‘day’,
stepmode=‘backward’),
dict(count=1,
label=‘1m’,
step=‘month’,
stepmode=‘backward’),
dict(count=6,
label=‘6m’,
step=‘month’,
stepmode=‘backward’),
dict(count=12,
label=‘12m’,
step=‘month’,
stepmode=‘backward’),
dict(step=‘all’)
])
))

Any tips?

Thanks,
Vaclav

think you need to use these two parameters:
fig.update_xaxes(rangeselector_y=1,rangeselector_x=1)