From e3c931648689658038cb88cf829e1e06abc8dc75 Mon Sep 17 00:00:00 2001
From: Thomas Kaul <4159106+dtslvr@users.noreply.github.com>
Date: Mon, 1 May 2023 19:26:49 +0200
Subject: [PATCH] Feature/improve tooltip of portfolio proportion chart (#1919)

* Hide title

* Update changelog
---
 CHANGELOG.md                                                  | 4 ++++
 .../portfolio-proportion-chart.component.ts                   | 3 +++
 2 files changed, 7 insertions(+)

diff --git a/CHANGELOG.md b/CHANGELOG.md
index b363edc2..3290dc01 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
 
 ## Unreleased
 
+### Changed
+
+- Improved the tooltip of the portfolio proportion chart component
+
 ### Fixed
 
 - Fixed the missing platform name in the allocations by platform chart on the allocations page
diff --git a/libs/ui/src/lib/portfolio-proportion-chart/portfolio-proportion-chart.component.ts b/libs/ui/src/lib/portfolio-proportion-chart/portfolio-proportion-chart.component.ts
index 3ff0dd41..36991d76 100644
--- a/libs/ui/src/lib/portfolio-proportion-chart/portfolio-proportion-chart.component.ts
+++ b/libs/ui/src/lib/portfolio-proportion-chart/portfolio-proportion-chart.component.ts
@@ -394,6 +394,9 @@ export class PortfolioProportionChartComponent
               })} ${this.baseCurrency} (${percentage.toFixed(2)}%)`
             ];
           }
+        },
+        title: () => {
+          return '';
         }
       }
     };