From 07731614a9dfca0ef53898f456696bbd490af07b Mon Sep 17 00:00:00 2001 From: Thomas Breloff Date: Fri, 2 Dec 2016 20:37:35 -0500 Subject: [PATCH] fix ComplexPlot; closes #598 --- src/recipes.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/recipes.jl b/src/recipes.jl index fd9e2bec..156bda3e 100644 --- a/src/recipes.jl +++ b/src/recipes.jl @@ -799,6 +799,6 @@ abline!(args...; kw...) = abline!(current(), args...; kw...) @recipe function f(cp::ComplexPlot) xguide --> "Real Part" yguide --> "Imaginary Part" - linetype --> :scatter + seriestype --> :scatter real(cp.args[1]), imag(cp.args[1]) end