diff --git a/src/backends/pgfplotsx.jl b/src/backends/pgfplotsx.jl index 8124fbd9..69c0b4b4 100644 --- a/src/backends/pgfplotsx.jl +++ b/src/backends/pgfplotsx.jl @@ -155,7 +155,6 @@ function (pgfx_plot::PGFPlotsXPlot)(plt::Plot{PGFPlotsXBackend}) push!(axis_opt, "colorbar" => nothing, "colormap name" => "plots$(sp.attr[:subplot_index])", - "colormap access" => "direct", ) # goto is needed to break out of col and series for @goto colorbar_end @@ -201,7 +200,6 @@ function (pgfx_plot::PGFPlotsXPlot)(plt::Plot{PGFPlotsXBackend}) if st == :heatmap push!(axis.options, "view" => "{0}{90}", - "shader" => "flat corner", ) end # treat segments @@ -347,7 +345,7 @@ function pgfx_series_coordinates!(st_val::Union{Val{:scatter}, Val{:scatter3d}}, end function pgfx_series_coordinates!(st_val::Val{:heatmap}, segment_opt, opt, args) push!(segment_opt, - "surf" => nothing, + "matrix plot*" => nothing, "mesh/rows" => length(opt[:x]), "mesh/cols" => length(opt[:y]), )