Feature/add vertical hover line to performance chart (#1020)

* Add vertical hover line

* Update changelog
pull/1022/head
Thomas Kaul 2 years ago committed by GitHub
parent 002b883668
commit a996dd7ed5
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
### Added
- Added the vertical hover line to inspect data points in the performance chart on the home page
### Changed
- Upgraded `angular` from version `13.3.6` to `14.0.2`

@ -4,7 +4,9 @@
<div class="row w-100">
<div class="chart-container col">
<gf-line-chart
class="position-absolute"
symbol="Performance"
[currency]="user?.settings?.baseCurrency"
[historicalDataItems]="historicalDataItems"
[locale]="user?.settings?.locale"
[ngClass]="{ 'pr-3': deviceType === 'mobile' }"

@ -25,10 +25,8 @@
gf-line-chart {
bottom: 0;
left: 0;
position: absolute;
right: 0;
top: 0;
z-index: -1;
}
}
}

Loading…
Cancel
Save