From 1ff8663e447eabfdd309eb655bc8ca5537766391 Mon Sep 17 00:00:00 2001 From: Daniel Schwabeneder Date: Fri, 21 Jul 2017 01:12:39 +0200 Subject: [PATCH] allow setting surface alpha in plotly --- src/backends/plotly.jl | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backends/plotly.jl b/src/backends/plotly.jl index 440884a9..9f764f4c 100644 --- a/src/backends/plotly.jl +++ b/src/backends/plotly.jl @@ -508,6 +508,7 @@ function plotly_series(plt::Plot, series::Series) d_out[:showscale] = false else d_out[:colorscale] = plotly_colorscale(series[:fillcolor], series[:fillalpha]) + d_out[:opacity] = series[:fillalpha] if series[:fill_z] != nothing d_out[:surfacecolor] = plotly_surface_data(series, series[:fill_z]) end