report: fix negative colors in barcharts

Specified bar colors only apply to positive bars in the plot.
Negative bars still have the default colors, which are slightly
darker shades of the default positive colors.

This commit forces negative bars to have the same colors as
positive bars.
This commit is contained in:
Jose Marino 2017-11-02 09:13:34 -06:00
parent 4f9716362c
commit 3b0bcf75e8

View File

@ -514,6 +514,9 @@
(push "options.seriesColors = [")
(push colors-str)
(push "];\n")
(push "options.negativeSeriesColors = [")
(push colors-str)
(push "];\n")
)
)