diff --git a/src/pipeline.jl b/src/pipeline.jl index bc144cc8..e0130f3f 100644 --- a/src/pipeline.jl +++ b/src/pipeline.jl @@ -331,9 +331,9 @@ function _override_seriestype_check(plotattributes::AKW, st::Symbol) if !RecipesPipeline.is3d(st) && !(st in (:contour, :contour3d)) z = plotattributes[:z] if !isa(z, Nothing) && - (size(plotattributes[:x]) == size(plotattributes[:y]) == size(z)) + (size(plotattributes[:x]) == size(plotattributes[:y]) == size(z)) st = (st == :scatter ? :scatter3d : :path3d) - plotattributes[:seriestype] = st + plotattributes[:seriestype] = st end end st diff --git a/src/shorthands.jl b/src/shorthands.jl index 16cff854..7b9584c9 100644 --- a/src/shorthands.jl +++ b/src/shorthands.jl @@ -320,9 +320,9 @@ julia> scatter3d([0,1,2,3],[0,1,4,9],[0,1,8,27]) """ mesh3d(x,y,z) - mesh3d(x,y,z;i,j,k) + mesh3d(x,y,z; connections) -Plot a 3d mesh. On Plotly the triangles can be specified using the i,j,k arguments. +Plot a 3d mesh. On Plotly the triangles can be specified using the connections argument. # Example ```Julia