Revert "Merge pull request #1155 from mkborregaard/newspy"

This reverts commit b71cfce105b03014af9b6149453ad5b95952a831.
This commit is contained in:
Michael Krabbe Borregaard 2018-08-21 17:21:06 +02:00
parent 91ec39e141
commit e0b7bdc1a5

View File

@ -1035,21 +1035,23 @@ end
@recipe function f(::Type{Val{:spy}}, x,y,z) @recipe function f(::Type{Val{:spy}}, x,y,z)
yflip := true yflip := true
aspect_ratio := 1 aspect_ratio := 1
rs, cs, zs = findnz(z.surf) rs, cs, zs = findnz(z.surf)
newz = fill(NaN, size(z)...) xlim := ignorenan_extrema(cs)
ylim := ignorenan_extrema(rs)
for i in eachindex(zs) if plotattributes[:markershape] == :none
newz[rs[i],cs[i]] = zs[i] markershape := :circle
end end
if plotattributes[:markersize] == default(:markersize)
seriestype := :heatmap markersize := 1
end
markerstrokewidth := 0
marker_z := zs
label := ""
x := cs
y := rs
z := nothing
seriestype := :scatter
grid --> false grid --> false
framestyle --> :box
x := x
y := y
z := Surface(newz)
() ()
end end