From c9df244333c733ce199e01b2aae9af3ecf013d47 Mon Sep 17 00:00:00 2001 From: Thomas Breloff Date: Mon, 21 Sep 2015 17:38:27 -0400 Subject: [PATCH] qwt fixes --- src/backends/qwt.jl | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/backends/qwt.jl b/src/backends/qwt.jl index b97dd680..b47489d9 100644 --- a/src/backends/qwt.jl +++ b/src/backends/qwt.jl @@ -6,7 +6,7 @@ immutable QwtPackage <: PlottingPackage end export qwt! qwt!() = plotter!(:qwt) -supportedTypes(::QwtPackage) = [:none, :line, :path, :step, :stepinverted, :sticks, :scatter, :heatmap, :hexbin, :hist, :bar] +supportedTypes(::QwtPackage) = [:none, :line, :path, :steppre, :steppost, :sticks, :scatter, :heatmap, :hexbin, :hist, :bar] # ------------------------------- @@ -14,6 +14,8 @@ const _qwtAliases = Dict( :nbins => :heatmap_n, :hexbin => :heatmap, :path => :line, + :steppost => :step, + :steppre => :stepinverted, ) function replaceLinetypeAlias(d) @@ -58,7 +60,7 @@ end function plot!(::QwtPackage, plt::Plot; kw...) d = adjustQwtKeywords(false; kw...) - @show d + # @show d Qwt.oplot(plt.o; d...) push!(plt.seriesargs, d) plt