mirror of https://github.com/ghostfolio/ghostfolio
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
1004 B
32 lines
1004 B
<div *ngIf="hasPositions || !historicalDataItems" class="container">
|
|
<div class="row">
|
|
<div class="chart-container col mr-3">
|
|
<gf-line-chart
|
|
symbol="Performance"
|
|
[historicalDataItems]="historicalDataItems"
|
|
[showLoader]="false"
|
|
[showXAxis]="false"
|
|
[showYAxis]="false"
|
|
></gf-line-chart>
|
|
</div>
|
|
</div>
|
|
<div class="overview-container row mb-5 mt-1">
|
|
<div class="col">
|
|
<gf-portfolio-performance-summary
|
|
class="pb-4"
|
|
[baseCurrency]="user?.settings?.baseCurrency"
|
|
[isLoading]="isLoadingPerformance"
|
|
[locale]="user?.settings?.locale"
|
|
[performance]="performance"
|
|
[showDetails]="!hasImpersonationId || hasPermissionToReadForeignPortfolio"
|
|
></gf-portfolio-performance-summary>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div
|
|
*ngIf="!hasPositions && historicalDataItems"
|
|
class="d-flex justify-content-center my-5"
|
|
>
|
|
<gf-no-transactions-info-indicator></gf-no-transactions-info-indicator>
|
|
</div>
|
|
|