add styling back to cash flow graph (#1819)

* add styling back

* release notes

* vrt
This commit is contained in:
Shaan Khosla
2023-10-21 13:21:16 -04:00
committed by GitHub
parent 75f2bf8b1b
commit d338a73794
3 changed files with 10 additions and 1 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 78 KiB

After

Width:  |  Height:  |  Size: 78 KiB

View File

@@ -35,7 +35,10 @@ function CashFlowGraph({ graphData, isConcise }: CashFlowGraphProps) {
}
>
<VictoryGroup>
<VictoryBar data={graphData.expenses} />
<VictoryBar
data={graphData.expenses}
style={{ data: { fill: chartTheme.colors.red } }}
/>
<VictoryBar data={graphData.income} />
</VictoryGroup>
<VictoryLine

View File

@@ -0,0 +1,6 @@
---
category: Bugfix
authors: [shaankhosla]
---
Fix styling on cash-flow graph.