gnucash stable: Multiple changes pushed
John Ralls
jralls at code.gnucash.org
Thu Aug 6 13:13:06 EDT 2026
Updated via https://github.com/Gnucash/gnucash/commit/41167c22 (commit)
via https://github.com/Gnucash/gnucash/commit/ac5932e2 (commit)
from https://github.com/Gnucash/gnucash/commit/a4f69f44 (commit)
commit 41167c22014a3653ffbd8cde08c6f751e1c7fb47
Merge: a4f69f44a7 ac5932e2ba
Author: John Ralls <jralls at ceridwen.us>
Date: Thu Aug 6 10:09:40 2026 -0700
Merge PRG's 'chart-tooltip' into stable.
commit ac5932e2ba72605e0aceeb3714fef5265af7d0ae
Author: PRG-112 <tt at pieroog.com>
Date: Tue Aug 4 12:46:42 2026 +0200
Enhancement - making the tooltip more readable (https://bugs.gnucash.org/show_bug.cgi?id=799799)
https://bugs.gnucash.org/show_bug.cgi?id=799799
A small change for making the tooltip more readable as it can get very messy with bigger data-sets. (see the screenshot)
>> Screenshots based on: GC Sample Database:
https://github.com/PRG-112/gnucash-sample-db-generator
diff --git a/gnucash/report/html-chart.scm b/gnucash/report/html-chart.scm
index 1fb1817c8b..541495c135 100644
--- a/gnucash/report/html-chart.scm
+++ b/gnucash/report/html-chart.scm
@@ -374,7 +374,7 @@ function tooltipLabel(tooltipItem,data) {
var label = data.datasets[tooltipItem.datasetIndex].data[tooltipItem.index];
switch (typeof(label)) {
case 'number':
- return datasetLabel + ': ' + numformat(label);
+ return ' ' + datasetLabel + ' : ' + numformat(label);
default:
return '';
}
Summary of changes:
gnucash/report/html-chart.scm | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
More information about the gnucash-changes
mailing list