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.
39 lines
929 B
39 lines
929 B
<gf-dialog-header
|
|
position="center"
|
|
[deviceType]="data.deviceType"
|
|
[title]="assetProfile?.name ?? assetProfile?.symbol"
|
|
(closeButtonClicked)="onClose()"
|
|
/>
|
|
|
|
<div class="flex-grow-1" mat-dialog-content>
|
|
<div class="container p-0">
|
|
<div class="row">
|
|
<div class="col-12 d-flex justify-content-center mb-3">
|
|
<gf-value
|
|
size="large"
|
|
[locale]="data.locale"
|
|
[precision]="2"
|
|
[value]="value"
|
|
/>
|
|
</div>
|
|
</div>
|
|
|
|
<gf-line-chart
|
|
benchmarkLabel="Average Unit Price"
|
|
class="mb-4"
|
|
[colorScheme]="data.colorScheme"
|
|
[historicalDataItems]="historicalDataItems"
|
|
[isAnimated]="true"
|
|
[label]="data.symbol"
|
|
[locale]="data.locale"
|
|
[showGradient]="true"
|
|
[showXAxis]="true"
|
|
[showYAxis]="true"
|
|
/>
|
|
</div>
|
|
</div>
|
|
|
|
<gf-dialog-footer
|
|
[deviceType]="data.deviceType"
|
|
(closeButtonClicked)="onClose()"
|
|
/>
|
|
|