Merge pull request #250 from KristofferC/kc/fix_pgfplots_color

Fix bug in some linecolors in PGFPlots
This commit is contained in:
Tom Breloff 2016-05-11 09:11:13 -04:00
commit 90c2202f6e

View File

@ -108,7 +108,12 @@ const _pgfplots_legend_pos = KW(
function _pgfplots_get_color(kwargs, symb)
c = typeof(kwargs[symb]) == Symbol ? convertColor(kwargs[symb]) : kwargs[symb].c
"{rgb,1:red,$(float(c.r));green,$(float(c.g));blue,$(float(c.b))}"
# We need to convert to decimals here because pgfplot will error
# for colors in engineering notation
r_str = @sprintf("%.8f", float(c.r))
g_str = @sprintf("%.8f", float(c.g))
b_str = @sprintf("%.8f", float(c.b))
"{rgb,1:red,$(r_str);green,$(g_str);blue,$(b_str)}"
end
function _pgfplots_get_linestyle!(kwargs, plt)