Skip to content

Commit 2578bc8

Browse files
committed
updating to alpha2, changing sample to make more sense
1 parent a39bf3f commit 2578bc8

1 file changed

Lines changed: 4 additions & 6 deletions

File tree

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,15 @@
11
import { Component } from '@angular/core';
2-
import { SINGERS } from '../../data/singersData';
3-
2+
import { CUSTOMERS } from '../../data/hierarchical-data';
43
@Component({
54
selector: 'hierarchical-grid-column-autosizing',
65
styleUrls: ['./hgrid-column-autosizing.component.scss'],
76
templateUrl: './hgrid-column-autosizing.component.html'
87
})
98

109
export class HGridColumnAutoSizingSampleComponent {
11-
public localData;
10+
public localdata;
11+
1212
constructor() {
13-
this.localData = SINGERS;
13+
this.localdata = CUSTOMERS;
1414
}
15-
16-
public formatter = (a) => a;
1715
}

0 commit comments

Comments
 (0)