etf-demo/src/app/app.component.html

20 lines
765 B
HTML
Raw Normal View History

2018-11-29 15:00:06 -05:00
<!--The content below is only a placeholder and can be replaced.-->
2018-11-29 17:23:21 -05:00
<mat-toolbar>
<span>ETF Demo</span>
<span class="mx-auto"><!-- Spacer --></span>
<button mat-button (click)="fileUploader.click()">
<mat-icon>add</mat-icon>
Upload
</button>
</mat-toolbar>
<div *ngIf="chartResults" class="w-100" [style.height]="chartHeight">
<ngx-charts-bar-horizontal-2d #chart
[results]="chartResults"
[xAxis]="true"
[yAxis]="true"
[yAxisTickFormatting]="format">
</ngx-charts-bar-horizontal-2d>
2018-11-29 15:00:06 -05:00
</div>
2018-11-29 17:23:21 -05:00
<input #fileUploader type="file" accept="text/csv" multiple hidden (change)="upload(fileUploader.files)">