Merge pull request #1668 from anowacki/an/1665

Remove broadcasting of getSeriesRGBColor
This commit is contained in:
Michael Krabbe Borregaard 2018-08-17 11:17:15 +02:00 committed by GitHub
commit e94fe13178
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1563,7 +1563,7 @@ function _update_series_attributes!(d::KW, plt::Plot, sp::Subplot)
end end
# update series color # update series color
d[:seriescolor] = getSeriesRGBColor.(d[:seriescolor], Ref(sp), plotIndex) d[:seriescolor] = getSeriesRGBColor(d[:seriescolor], sp, plotIndex)
# update other colors # update other colors
for s in (:line, :marker, :fill) for s in (:line, :marker, :fill)
@ -1577,7 +1577,7 @@ function _update_series_attributes!(d::KW, plt::Plot, sp::Subplot)
elseif d[csym] == :match elseif d[csym] == :match
plot_color(d[:seriescolor]) plot_color(d[:seriescolor])
else else
getSeriesRGBColor.(d[csym], Ref(sp), plotIndex) getSeriesRGBColor(d[csym], sp, plotIndex)
end end
end end
@ -1585,9 +1585,9 @@ function _update_series_attributes!(d::KW, plt::Plot, sp::Subplot)
d[:markerstrokecolor] = if d[:markerstrokecolor] == :match d[:markerstrokecolor] = if d[:markerstrokecolor] == :match
plot_color(sp[:foreground_color_subplot]) plot_color(sp[:foreground_color_subplot])
elseif d[:markerstrokecolor] == :auto elseif d[:markerstrokecolor] == :auto
getSeriesRGBColor.(d[:markercolor], Ref(sp), plotIndex) getSeriesRGBColor(d[:markercolor], sp, plotIndex)
else else
getSeriesRGBColor.(d[:markerstrokecolor], Ref(sp), plotIndex) getSeriesRGBColor(d[:markerstrokecolor], sp, plotIndex)
end end
# if marker_z, fill_z or line_z are set, ensure we have a gradient # if marker_z, fill_z or line_z are set, ensure we have a gradient