This commit is contained in:
Thomas Breloff 2015-10-27 20:08:33 -04:00
parent e58fb935b0
commit 697a59568c
2 changed files with 4 additions and 1 deletions

View File

@ -259,7 +259,7 @@ function plot!(pkg::PyPlotPackage, plt::Plot; kw...)
elseif lt == :contour
# NOTE: x/y are backwards in pyplot, so we switch the x and y args (also y is reversed),
# and take the transpose of the surface matrix
x, y = reverse(d[:y]), d[:x]
x, y = d[:y], d[:x]
surf = d[:surface]'
handle = plotfunc(x, y, surf, d[:nlevels]; extra_kwargs...)
if d[:fillrange] != nothing

View File

@ -244,6 +244,9 @@ function expandLimits!(lims, plt::Plot{QwtPackage}, isx::Bool)
end
function handleLinkInner(plt::Plot{QwtPackage}, isx::Bool)
end
# ----------------------------------------------------------------