Hello, I have the following figure structure
fig = Figure()
ax1 = Axis(fig[1,1])
ax2 = Axis(fig[1,2])
ax3 = Axis(fig[2,1])
ax4 = Axis(fig[2,2])
ax5 = Axis(fig[1:2,3])
colsize!(fig.layout, 3, Relative(0.6))
fig
where I’m able to change the size of the third column.
However, I want now to the an equal aspect for ax5
, which however takes multiple positions in the figure, so colsize!(fig.layout, 3, Aspect(1:2, 1)
doesn’t work.
I would avoid to set the aspect using the aspect
argument, as this doesn’t inform the figure layout to resize. Indeed, I want the axis to be exactly aligned to the figure layout.