add attribute fillalpha to contourf seriestype for pyplot backend

This commit is contained in:
Cornelius-G 2020-05-26 16:11:28 +02:00
parent b73dd46521
commit ce35c371eb

View File

@ -661,6 +661,7 @@ function py_add_series(plt::Plot{PyPlotBackend}, series::Series)
handle = ax."contourf"(x, y, z, levelargs...; handle = ax."contourf"(x, y, z, levelargs...;
label = series[:label], label = series[:label],
zorder = series[:series_plotindex] + 0.5, zorder = series[:series_plotindex] + 0.5,
alpha = series[:fillalpha],
extrakw... extrakw...
) )
push!(handles, handle) push!(handles, handle)