Sorry for misunderstanding. I don’t know of a straightforward solution, but maybe you can use a hack like this:
using Plots
A = reshape([max(i,j) for i in 1:5 for j in 1:5],5,5)
function scale4plot(A,f=100)
resize(A,f) = [A[i,j] for i=1 .+(0:f*size(A,1)-1).÷f,j=1 .+(0:f*size(A,2)-1).÷f]
B = resize(A,f)
ax,ay = ( (axes(B,i)./f).+0.5 for i=1:2)
ay,ax,B
end
contour(scale4plot(A)..., w=1, linecolor=:black, fill=true )