Match only certain y-axes

Hi :slight_smile:
I created a Plot with three subplots, where two of the subplots have the same y-axis range. When zooming into one of the two similar plots, the other plot should be zoomed into the same (new) y-range. So I used

fig.update_layout(yaxis_range=[-100,100])
fig.update_layout(yaxis2_range=[-100,100])
fig.update_yaxes(matches=‘y’)
fig.update_layout(yaxis3_range=[-500,0])

but with that, all three y-axes are matched. How can I only match the first two y-axes and fix the range [-500,0] for the third one?