From fe7765905829c49ae685779f634571cd926ce2f4 Mon Sep 17 00:00:00 2001 From: Simon Christ Date: Thu, 21 Nov 2019 11:11:05 +0100 Subject: [PATCH] remove point meta --- src/backends/pgfplotsx.jl | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) diff --git a/src/backends/pgfplotsx.jl b/src/backends/pgfplotsx.jl index 4995feb5..ac088762 100644 --- a/src/backends/pgfplotsx.jl +++ b/src/backends/pgfplotsx.jl @@ -129,10 +129,6 @@ function (pgfx_plot::PGFPlotsXPlot)(plt::Plot{PGFPlotsXBackend}) series_opt = PGFPlotsX.Options( "color" => opt[:linecolor], ) - if opt[:marker_z] !== nothing - push!(series_opt, "point meta" => "explicit") - push!(series_opt, "scatter" => nothing) - end if is3d(series) series_func = PGFPlotsX.Plot3 else @@ -158,13 +154,7 @@ function (pgfx_plot::PGFPlotsXPlot)(plt::Plot{PGFPlotsXBackend}) end segment_plot = series_func( merge(series_opt, segment_opt), - PGFPlotsX.Coordinates(seg_args..., - meta = if !isnothing(opt[:marker_z]) - opt[:marker_z][rng] - else - nothing - end - ), + PGFPlotsX.Coordinates(seg_args...), series[:fillrange] !== nothing ? "\\closedcycle" : "{}" ) push!(axis, segment_plot)