ghostfolio/apps/client/src/app/components/investment-chart/investment-chart.component.html

14 lines
247 B
HTML
Raw Normal View History

2021-04-13 21:53:58 +02:00
<ngx-skeleton-loader
*ngIf="isLoading"
animation="pulse"
[theme]="{
height: '100%',
2021-04-13 21:53:58 +02:00
width: '100%'
}"
></ngx-skeleton-loader>
<canvas
#chartCanvas
class="h-100"
2021-04-13 21:53:58 +02:00
[ngStyle]="{ display: isLoading ? 'none' : 'block' }"
></canvas>