|
| 1 | +<div class="grid__wrapper"> |
| 2 | + <igx-hierarchical-grid igxPreventDocumentScroll class="hierarchicalGrid" [data]="localdata" (columnResized)="onResize($event)" [autoGenerate]="false" |
| 3 | + [height]="'480px'" [width]="'100%'" [rowHeight]="'65px'" #hierarchicalGrid> |
| 4 | + <igx-column field="Artist" [resizable]="true"></igx-column> |
| 5 | + <igx-column field="Photo" [resizable]="true" [minWidth]="'115px'"> |
| 6 | + <ng-template igxCell let-cell="cell"> |
| 7 | + <div class="cell__inner_2"> |
| 8 | + <img [src]="cell.value" class="photo" /> |
| 9 | + </div> |
| 10 | + </ng-template> |
| 11 | + </igx-column> |
| 12 | + <igx-column field="Debut" width="auto" [resizable]="true" [minWidth]="'88px'" [maxWidth]="'230px'" dataType="number" [formatter]="formatter"></igx-column> |
| 13 | + <igx-column field="GrammyNominations" width="auto" header="Grammy Nominations" [resizable]="true"></igx-column> |
| 14 | + <igx-column field="GrammyAwards" width="auto" header="Grammy Awards" [resizable]="true"></igx-column> |
| 15 | + <igx-column field="Sales" width="auto" header="Album Sales in last {{ this.years }} years" [width]="'230px'" [filterable]="false" > |
| 16 | + <ng-template igxCell let-val> |
| 17 | + <igx-sparkline height="40px" width="220px" |
| 18 | + [dataSource]="val" |
| 19 | + valueMemberPath="Copies" |
| 20 | + displayType="Line" |
| 21 | + lineThickness="2" |
| 22 | + brush="rgb(255,102,0)" > |
| 23 | + </igx-sparkline> |
| 24 | + </ng-template> |
| 25 | + </igx-column> |
| 26 | + |
| 27 | + <igx-row-island [height]="null" [key]="'Albums'" [autoGenerate]="false"> |
| 28 | + <igx-column field="Album" [resizable]="true"></igx-column> |
| 29 | + <igx-column field="LaunchDate" header="Launch Date" [resizable]="true" [dataType]="'date'"></igx-column> |
| 30 | + <igx-column field="BillboardReview" header="Billboard Review" [resizable]="true"></igx-column> |
| 31 | + <igx-column field="USBillboard200" header="US Billboard 200" [resizable]="true"></igx-column> |
| 32 | + <igx-row-island [height]="null" [key]="'Songs'" [autoGenerate]="false"> |
| 33 | + <igx-column field="Number" header="No." [resizable]="true"></igx-column> |
| 34 | + <igx-column field="Title" [resizable]="true"></igx-column> |
| 35 | + <igx-column field="Released" dataType="date" [resizable]="true"></igx-column> |
| 36 | + <igx-column field="Genre" [resizable]="true"></igx-column> |
| 37 | + </igx-row-island> |
| 38 | + </igx-row-island> |
| 39 | + |
| 40 | + <igx-row-island [height]="null" [key]="'Tours'" [autoGenerate]="false"> |
| 41 | + <igx-column field="Tour" [resizable]="true"></igx-column> |
| 42 | + <igx-column field="StartedOn" header="Started on" [resizable]="true"></igx-column> |
| 43 | + <igx-column field="Location" [resizable]="true"></igx-column> |
| 44 | + <igx-column field="Headliner" [resizable]="true"></igx-column> |
| 45 | + </igx-row-island> |
| 46 | + </igx-hierarchical-grid> |
| 47 | + </div> |
0 commit comments