From b726f1b78d478472c3d28861299cd2c5a31f10cc Mon Sep 17 00:00:00 2001 From: Zhanibek Date: Thu, 14 May 2020 18:05:37 +0900 Subject: [PATCH] python depthshade --- src/backends/pyplot.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/backends/pyplot.jl b/src/backends/pyplot.jl index 890c86a5..385dc1ae 100644 --- a/src/backends/pyplot.jl +++ b/src/backends/pyplot.jl @@ -590,11 +590,11 @@ function py_add_series(plt::Plot{PyPlotBackend}, series::Series) else # do a normal scatter plot + # Add depthshade option for 3d plots if RecipesPipeline.is3d(sp) extrakw[:depthshade] = get(series[:extra_kwargs], :depthshade, false) end - handle = ax."scatter"(xyargs...; label = series[:label], zorder = series[:series_plotindex] + 0.5,