Hi, I am making an interactive plot in (W)GLMakie, and am wondering how to disable the default Axis interactivity. I have disabled zoom and panning, but I’m having trouble disabling rectangle zoom. What I have:
using GLMakie
x, y = rand(10), rand(10)
f,a,s = scatter(x,y)
a.xzoomlock = true
a.yzoomlock = true
a.ypanlock = true
a.xpanlock = true
a.xrectzoom = true
a.yrectzoom = true
f