mirror of
https://github.com/Gnucash/gnucash.git
synced 2024-12-01 21:19:16 -06:00
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:
parent
4f9716362c
commit
3b0bcf75e8
@ -514,6 +514,9 @@
|
||||
(push "options.seriesColors = [")
|
||||
(push colors-str)
|
||||
(push "];\n")
|
||||
(push "options.negativeSeriesColors = [")
|
||||
(push colors-str)
|
||||
(push "];\n")
|
||||
)
|
||||
)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user