In Plots.jl using pyplot as the backend, when I zoom in the plot using the pan/zoom button, the axes ticks are not automatically adjusted as PyPlot, nor the x,y coordinates at the bottom left of the plot window are displayed.
I had forgotten about this post. That’s great to hear @dalarev!
FYI: How to get it to work with PyPlot
Apparently, this behaviour can be achieved with PyPlot if you set options:
pyplot(ticks=:native)
or if you set the option in your plot command:
plot(x, y, [other args here], ticks=:native)
I checked with the maintainers of Plots.jl, and it appears the intent of ticks=:native is indeed to use PyPlot’s own internal programming to display ticks (which auto-adjusts as you zoom):
→ https://github.com/JuliaPlots/Plots.jl/issues/3263