From b543085fb2ff5473e2ce5769723ae49b36b42e52 Mon Sep 17 00:00:00 2001 From: piever Date: Wed, 28 Apr 2021 16:25:20 +0200 Subject: [PATCH] add default plottype to three vectors --- src/interfaces.jl | 1 + 1 file changed, 1 insertion(+) diff --git a/src/interfaces.jl b/src/interfaces.jl index d265477b..6a09dc7d 100644 --- a/src/interfaces.jl +++ b/src/interfaces.jl @@ -555,6 +555,7 @@ plottype(::Type{Any}, argvalues...) = plottype(argvalues...) plottype(P::Type{<: Combined{T}}, argvalues...) where T = P ## specialized definitions for types +plottype(::AbstractVector, ::AbstractVector, ::AbstractVector) = Scatter plottype(::AbstractVector, ::AbstractVector) = Scatter plottype(::AbstractVector) = Scatter plottype(::AbstractMatrix{<: Real}) = Heatmap