Hi all,
I am trying to get a figure done with Makie. I am having trouble setting the position of my legend so it does not intersect with the lines. I have checked Legend · Makie , but that only says that I can use combinations of left, center, right with top, center, bottom. I tried to feed a tuple of floats to the position argument and it seems to accept them, but the Legend does not appear to change its position, no matter which numbers I put. Also, the possibility of feeding tuples to the position argument is not documented anywhere, but it is discussed here: Can you do fine adjustment on legend position in Makie?
My code is something like
axislegend(axis, position=(0.1, 0.8), framevisible=false, rowgap=0, patchlabelgap=1, patchsize=(10,10))
What is the best way to fine-tune the Legend position with Makie? Thank you!