Browse Source
Feature/improve tooltip of portfolio proportion chart (#1919)
* Hide title
* Update changelog
pull/1921/head
Thomas Kaul
2 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with
7 additions and
0 deletions
-
CHANGELOG.md
-
libs/ui/src/lib/portfolio-proportion-chart/portfolio-proportion-chart.component.ts
|
@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 |
|
|
|
|
|
|
|
|
## Unreleased |
|
|
## Unreleased |
|
|
|
|
|
|
|
|
|
|
|
### Changed |
|
|
|
|
|
|
|
|
|
|
|
- Improved the tooltip of the portfolio proportion chart component |
|
|
|
|
|
|
|
|
### Fixed |
|
|
### Fixed |
|
|
|
|
|
|
|
|
- Fixed the missing platform name in the allocations by platform chart on the allocations page |
|
|
- 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)}%)` |
|
|
})} ${this.baseCurrency} (${percentage.toFixed(2)}%)` |
|
|
]; |
|
|
]; |
|
|
} |
|
|
} |
|
|
|
|
|
}, |
|
|
|
|
|
title: () => { |
|
|
|
|
|
return ''; |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
}; |
|
|
}; |
|
|