small PGFPlots fix in backends.jl

This commit is contained in:
Daniel Schwabeneder 2018-09-18 23:50:13 +02:00
parent b73d7f03a7
commit 9c1a5548e1

View File

@ -526,39 +526,40 @@ function add_backend_string(::PGFPlotsBackend)
""" """
end end
:annotations, const _pgfplots_attr = merge_with_base_supported([
:background_color_legend, :annotations,
:background_color_inside, :background_color_legend,
# :background_color_outside, :background_color_inside,
# :foreground_color_legend, # :background_color_outside,
:foreground_color_grid, :foreground_color_axis, # :foreground_color_legend,
:foreground_color_text, :foreground_color_border, :foreground_color_grid, :foreground_color_axis,
:label, :foreground_color_text, :foreground_color_border,
:seriescolor, :seriesalpha, :label,
:linecolor, :linestyle, :linewidth, :linealpha, :seriescolor, :seriesalpha,
:markershape, :markercolor, :markersize, :markeralpha, :linecolor, :linestyle, :linewidth, :linealpha,
:markerstrokewidth, :markerstrokecolor, :markerstrokealpha, :markerstrokestyle, :markershape, :markercolor, :markersize, :markeralpha,
:fillrange, :fillcolor, :fillalpha, :markerstrokewidth, :markerstrokecolor, :markerstrokealpha, :markerstrokestyle,
:bins, :fillrange, :fillcolor, :fillalpha,
# :bar_width, :bar_edges, :bins,
:title, # :bar_width, :bar_edges,
# :window_title, :title,
:guide, :guide_position, :lims, :ticks, :scale, :flip, :rotation, # :window_title,
:tickfont, :guidefont, :legendfont, :guide, :guide_position, :lims, :ticks, :scale, :flip, :rotation,
:grid, :legend, :tickfont, :guidefont, :legendfont,
:colorbar, :colorbar_title, :grid, :legend,
:fill_z, :line_z, :marker_z, :levels, :colorbar, :colorbar_title,
# :ribbon, :quiver, :arrow, :fill_z, :line_z, :marker_z, :levels,
# :orientation, # :ribbon, :quiver, :arrow,
# :overwrite_figure, # :orientation,
:polar, # :overwrite_figure,
# :normalize, :weights, :contours, :polar,
:aspect_ratio, # :normalize, :weights, :contours,
# :match_dimensions, :aspect_ratio,
:tick_direction, # :match_dimensions,
:framestyle, :tick_direction,
:camera, :framestyle,
:contour_labels, :camera,
:contour_labels,
]) ])
const _pgfplots_seriestype = [:path, :path3d, :scatter, :steppre, :stepmid, :steppost, :histogram2d, :ysticks, :xsticks, :contour, :shape, :straightline,] const _pgfplots_seriestype = [:path, :path3d, :scatter, :steppre, :stepmid, :steppost, :histogram2d, :ysticks, :xsticks, :contour, :shape, :straightline,]
const _pgfplots_style = [:auto, :solid, :dash, :dot, :dashdot, :dashdotdot] const _pgfplots_style = [:auto, :solid, :dash, :dot, :dashdot, :dashdotdot]