Merge pull request #1401 from apalugniok/pgfplots-extra-brackets

Prevent addition of curly braces around style string. (Fixes #1396)
This commit is contained in:
Andrew Palugniok 2018-02-21 16:09:46 +00:00 committed by GitHub
commit 80b25657bc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -450,7 +450,7 @@ function _update_plot_object(plt::Plot{PGFPlotsBackend})
end end
@label colorbar_end @label colorbar_end
o = axisf(; style = style, kw...) o = axisf(; style = join(style, ","), kw...)
# add the series object to the PGFPlots.Axis # add the series object to the PGFPlots.Axis
for series in series_list(sp) for series in series_list(sp)