Skip to content

Commit 395094c

Browse files
committed
apply review
1 parent a723587 commit 395094c

5 files changed

Lines changed: 5 additions & 5 deletions

File tree

apps/demos/Demos/PivotGrid/Overview/Angular/app/app.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ export class AppComponent implements AfterViewInit {
8080
setTimeout(() => {
8181
const dataSource = this.pivotGrid.instance.getDataSource();
8282
dataSource.expandHeaderItem('row', ['North America']);
83-
dataSource.expandHeaderItem('column', [2013]);
83+
dataSource.expandHeaderItem('column', [2023]);
8484
}, 0);
8585
}
8686

apps/demos/Demos/PivotGrid/Overview/React/App.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ const App = () => {
7474
});
7575
setTimeout(() => {
7676
dataSource.expandHeaderItem('row', ['North America']);
77-
dataSource.expandHeaderItem('column', [2013]);
77+
dataSource.expandHeaderItem('column', [2023]);
7878
});
7979
}, []);
8080

apps/demos/Demos/PivotGrid/Overview/ReactJs/App.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ const App = () => {
6363
});
6464
setTimeout(() => {
6565
dataSource.expandHeaderItem('row', ['North America']);
66-
dataSource.expandHeaderItem('column', [2013]);
66+
dataSource.expandHeaderItem('column', [2023]);
6767
});
6868
}, []);
6969
return (

apps/demos/Demos/PivotGrid/Overview/Vue/App.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ onMounted(() => {
9797
9898
setTimeout(() => {
9999
pivotGridDataSource?.expandHeaderItem('row', ['North America']);
100-
pivotGridDataSource?.expandHeaderItem('column', [2013]);
100+
pivotGridDataSource?.expandHeaderItem('column', [2023]);
101101
});
102102
});
103103

apps/demos/Demos/PivotGrid/Overview/jQuery/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ $(() => {
7272
function expand() {
7373
const dataSource = pivotGrid.getDataSource();
7474
dataSource.expandHeaderItem('row', ['North America']);
75-
dataSource.expandHeaderItem('column', [2013]);
75+
dataSource.expandHeaderItem('column', [2023]);
7676
}
7777

7878
setTimeout(expand, 0);

0 commit comments

Comments
 (0)