Wrong placement of axis in Plot with facets

I was playing around with facets in this notebook and noticed that setting a larger height than the default one can lead to a misplaced axis and axis labels:

CleanShot 2023-07-08 at 09.14.12@2x

Is this a potential bug or am I doing something wrong?

The root cause is that the y axis has explicit ticks, but they do not change the domain. So you’ll probably need to also set something like:

domain: [weightExtent[0] - 1, weightExtent[1] + 2],
1 Like