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 ''; } } };