Browse Source

Feature/improve tooltip of portfolio proportion chart (#1919)

* Hide title

* Update changelog
pull/1921/head
Thomas Kaul 1 year ago
committed by GitHub
parent
commit
e3c9316486
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      CHANGELOG.md
  2. 3
      libs/ui/src/lib/portfolio-proportion-chart/portfolio-proportion-chart.component.ts

4
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

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

Loading…
Cancel
Save