commit | d53991857c59ab41888e9fe0f28964f346f84ec7 | [log] [tgz] |
---|---|---|
author | Subin Tom <36098155+nemesis189@users.noreply.github.com> | Fri Jul 09 14:33:00 2021 +0530 |
committer | GitHub <noreply@github.com> | Fri Jul 09 14:33:00 2021 +0530 |
tree | a16a5e0f03fdf05171be52589279b4a072d58e3a | |
parent | eb0dea09bb5b613f8c0a57af23e481df96b17969 [diff] |
fix: Fixed Budget Variance Graph color from all black to default (#26368)
diff --git a/erpnext/accounts/report/budget_variance_report/budget_variance_report.py b/erpnext/accounts/report/budget_variance_report/budget_variance_report.py index 9c9ada8..f1b231b 100644 --- a/erpnext/accounts/report/budget_variance_report/budget_variance_report.py +++ b/erpnext/accounts/report/budget_variance_report/budget_variance_report.py
@@ -397,6 +397,7 @@ {'name': 'Budget', 'chartType': 'bar', 'values': budget_values}, {'name': 'Actual Expense', 'chartType': 'bar', 'values': actual_values} ] - } + }, + 'type' : 'bar' }