[PR #2124] [MERGED] Custom Reports: Enable Show Labels #4134

Closed
opened 2026-02-28 20:52:01 -06:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/actualbudget/actual/pull/2124
Author: @carkom
Created: 12/26/2023
Status: Merged
Merged: 1/12/2024
Merged by: @carkom

Base: masterHead: enableLabels


📝 Commits (10+)

📊 Changes

16 files changed (+318 additions, -29 deletions)

View changed files

📝 packages/desktop-client/src/components/reports/ChooseGraph.tsx (+12 -1)
📝 packages/desktop-client/src/components/reports/ReportTopbar.jsx (+1 -2)
📝 packages/desktop-client/src/components/reports/graphs/AreaGraph.tsx (+55 -7)
📝 packages/desktop-client/src/components/reports/graphs/BarGraph.tsx (+33 -2)
📝 packages/desktop-client/src/components/reports/graphs/DonutGraph.tsx (+36 -2)
📝 packages/desktop-client/src/components/reports/graphs/StackedBarGraph.tsx (+37 -2)
packages/desktop-client/src/components/reports/graphs/adjustTextSize.ts (+89 -0)
packages/desktop-client/src/components/reports/graphs/renderCustomLabel.tsx (+29 -0)
📝 packages/desktop-client/src/components/reports/reports/CustomReport.jsx (+6 -5)
📝 packages/desktop-client/src/components/reports/reports/CustomReportCard.jsx (+2 -2)
📝 packages/desktop-client/src/components/reports/spreadsheets/custom-spreadsheet.ts (+3 -3)
📝 packages/desktop-client/src/components/reports/spreadsheets/grouped-spreadsheet.ts (+2 -2)
📝 packages/desktop-client/src/style/themes/dark.ts (+1 -0)
📝 packages/desktop-client/src/style/themes/light.ts (+1 -0)
📝 packages/loot-core/src/shared/util.ts (+5 -1)
upcoming-release-notes/2124.md (+6 -0)

📄 Description

Enabling and formatting "viewLabels" button.

A quick note: I fully understand that labels aren't going to work very well for everything (eg. something like Payees in a bar graph). The field can be shown for when it's useful and hidden for when it's not.


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/actualbudget/actual/pull/2124 **Author:** [@carkom](https://github.com/carkom) **Created:** 12/26/2023 **Status:** ✅ Merged **Merged:** 1/12/2024 **Merged by:** [@carkom](https://github.com/carkom) **Base:** `master` ← **Head:** `enableLabels` --- ### 📝 Commits (10+) - [`c04376e`](https://github.com/actualbudget/actual/commit/c04376e9c51006095c288aefe83e559961a6cbe3) work - [`c4b93b6`](https://github.com/actualbudget/actual/commit/c4b93b6c7d11b5e691d4ff2999ed3d47873e92a9) updates - [`b64742e`](https://github.com/actualbudget/actual/commit/b64742e013b47070c12882879b128441cb5a2e23) Merge remote-tracking branch 'upstream/master' into enableLabels - [`87e543c`](https://github.com/actualbudget/actual/commit/87e543ce29cb6d469273079cba55e69bc3a45422) merge fixes - [`57cc801`](https://github.com/actualbudget/actual/commit/57cc801a9d65e1dcb8f239959764f67018e77032) syntax fix - [`3f4dfe1`](https://github.com/actualbudget/actual/commit/3f4dfe11e7d17dfc4b3c43e29c5703fc5fde150c) Add Label element - [`0ee2977`](https://github.com/actualbudget/actual/commit/0ee2977733518242c990a1fb8fc2d037e841e14f) updates - [`495b231`](https://github.com/actualbudget/actual/commit/495b2313363c41305563c6ed3dc8eff64269ea2c) notes - [`15e327a`](https://github.com/actualbudget/actual/commit/15e327a85d1fc0ead1f87168ffe66ab435aee807) normalize customLabel - [`6dc8e8f`](https://github.com/actualbudget/actual/commit/6dc8e8f1425b47ae3588356180135252144ead4b) fix ### 📊 Changes **16 files changed** (+318 additions, -29 deletions) <details> <summary>View changed files</summary> 📝 `packages/desktop-client/src/components/reports/ChooseGraph.tsx` (+12 -1) 📝 `packages/desktop-client/src/components/reports/ReportTopbar.jsx` (+1 -2) 📝 `packages/desktop-client/src/components/reports/graphs/AreaGraph.tsx` (+55 -7) 📝 `packages/desktop-client/src/components/reports/graphs/BarGraph.tsx` (+33 -2) 📝 `packages/desktop-client/src/components/reports/graphs/DonutGraph.tsx` (+36 -2) 📝 `packages/desktop-client/src/components/reports/graphs/StackedBarGraph.tsx` (+37 -2) ➕ `packages/desktop-client/src/components/reports/graphs/adjustTextSize.ts` (+89 -0) ➕ `packages/desktop-client/src/components/reports/graphs/renderCustomLabel.tsx` (+29 -0) 📝 `packages/desktop-client/src/components/reports/reports/CustomReport.jsx` (+6 -5) 📝 `packages/desktop-client/src/components/reports/reports/CustomReportCard.jsx` (+2 -2) 📝 `packages/desktop-client/src/components/reports/spreadsheets/custom-spreadsheet.ts` (+3 -3) 📝 `packages/desktop-client/src/components/reports/spreadsheets/grouped-spreadsheet.ts` (+2 -2) 📝 `packages/desktop-client/src/style/themes/dark.ts` (+1 -0) 📝 `packages/desktop-client/src/style/themes/light.ts` (+1 -0) 📝 `packages/loot-core/src/shared/util.ts` (+5 -1) ➕ `upcoming-release-notes/2124.md` (+6 -0) </details> ### 📄 Description Enabling and formatting "viewLabels" button. A quick note: I fully understand that labels aren't going to work very well for everything (eg. something like Payees in a bar graph). The field can be shown for when it's useful and hidden for when it's not. --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
GiteaMirror added the pull-request label 2026-02-28 20:52:01 -06:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: github-starred/actual#4134