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

* Hide title

* Update changelog
pull/1921/head
Thomas Kaul 1 year ago committed by GitHub
parent c19984c3d0
commit e3c9316486
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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

@ -394,6 +394,9 @@ export class PortfolioProportionChartComponent
})} ${this.baseCurrency} (${percentage.toFixed(2)}%)`
];
}
},
title: () => {
return '';
}
}
};

Loading…
Cancel
Save