add linestyle to contour plots

This commit is contained in:
Simon Christ 2020-11-12 12:11:45 +01:00
parent d3315a5dae
commit 8e0674b715

View File

@ -568,6 +568,7 @@ function pgfx_add_series!(::Val{:contour3d}, axis, series_opt, series, series_fu
series_opt, series_opt,
"contour prepared" => PGFPlotsX.Options("labels" => opt[:contour_labels]), "contour prepared" => PGFPlotsX.Options("labels" => opt[:contour_labels]),
) )
series_opt = merge( series_opt, pgfx_linestyle(opt) )
args = pgfx_series_arguments(series, opt) args = pgfx_series_arguments(series, opt)
series_plot = series_func(series_opt, PGFPlotsX.Table(Contour.contours(args..., opt[:levels]))) series_plot = series_func(series_opt, PGFPlotsX.Table(Contour.contours(args..., opt[:levels])))
push!(axis, series_plot) push!(axis, series_plot)