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.
27 lines
639 B
27 lines
639 B
<gf-dialog-header
|
|
mat-dialog-title
|
|
title="Performance"
|
|
[deviceType]="data.deviceType"
|
|
(closeButtonClicked)="onClose()"
|
|
></gf-dialog-header>
|
|
|
|
<div mat-dialog-content>
|
|
<div class="container p-0">
|
|
<gf-line-chart
|
|
class="mb-4"
|
|
symbol="Performance"
|
|
[benchmarkDataItems]="benchmarkDataItems"
|
|
[historicalDataItems]="historicalDataItems"
|
|
[showGradient]="true"
|
|
[showLegend]="true"
|
|
[showXAxis]="true"
|
|
[showYAxis]="false"
|
|
></gf-line-chart>
|
|
</div>
|
|
</div>
|
|
|
|
<gf-dialog-footer
|
|
mat-dialog-actions
|
|
[deviceType]="data.deviceType"
|
|
(closeButtonClicked)="onClose()"
|
|
></gf-dialog-footer>
|
|
|