show empty data points on line graph reports (#5815)

* draw zero points

* note

* Update VRT

---------

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
This commit is contained in:
Matt Fiddaman
2025-10-05 14:22:51 +01:00
committed by GitHub
parent 71f849d1e1
commit cc2e329e8e
5 changed files with 8 additions and 3 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 104 KiB

After

Width:  |  Height:  |  Size: 118 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 104 KiB

After

Width:  |  Height:  |  Size: 119 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 104 KiB

After

Width:  |  Height:  |  Size: 119 KiB

View File

@@ -219,9 +219,8 @@ export function createCustomSpreadsheet({
if (balanceTypeOp === 'totalTotals') {
stackAmounts += netAmounts;
}
if (stackAmounts !== 0) {
stacked[item.name] = stackAmounts; // TODO: not sure yet
}
stacked[item.name] = stackAmounts;
perIntervalNetAssets =
netAmounts > 0

View File

@@ -0,0 +1,6 @@
---
category: Bugfix
authors: [matt-fidd]
---
Show empty data points on line graph reports