Skip to content

Commit acce24d

Browse files
author
tfsbuild
committed
Adding changes from build igniteui-xplat-examples-output+PRs_2025.12.5.3
1 parent c1a9e1a commit acce24d

File tree

5 files changed

+10
-9
lines changed

5 files changed

+10
-9
lines changed

samples/charts/data-chart/data-annotation-multiple-with-stocks/src/AnnotationSliceEarningsBeatData.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ export class AnnotationSliceEarningsBeatData extends Array<AnnotationSliceEarnin
1515
const newItems = [
1616
new AnnotationSliceEarningsBeatDataItem({ value: 155, label: `Earnings Beat` }),
1717
new AnnotationSliceEarningsBeatDataItem({ value: 86, label: `Earnings Beat` }),
18-
new AnnotationSliceEarningsBeatDataItem({ value: 28, label: `Earnings Miss` }),
18+
new AnnotationSliceEarningsBeatDataItem({ value: 28, label: `Earnings Beat` }),
1919
];
2020
super(...newItems.slice(0));
2121
}

samples/charts/data-chart/data-annotation-slice-layer/src/AnnotationSliceEarningsBeatData.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ export class AnnotationSliceEarningsBeatData extends Array<AnnotationSliceEarnin
1515
const newItems = [
1616
new AnnotationSliceEarningsBeatDataItem({ value: 155, label: `Earnings Beat` }),
1717
new AnnotationSliceEarningsBeatDataItem({ value: 86, label: `Earnings Beat` }),
18-
new AnnotationSliceEarningsBeatDataItem({ value: 28, label: `Earnings Miss` }),
18+
new AnnotationSliceEarningsBeatDataItem({ value: 28, label: `Earnings Beat` }),
1919
];
2020
super(...newItems.slice(0));
2121
}

samples/grids/grid/binding-nested-data-1/index.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@
4343
field="Employees"
4444
header="Employees"
4545
width="20%"
46+
min-width="275px"
4647
name="column1"
4748
id="column1">
4849
</igc-column>

samples/grids/tree-grid/column-moving-styles/index.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@
2121
<div class="container fill">
2222
<igc-tree-grid
2323
auto-generate="false"
24-
name="treeGrid"
25-
id="treeGrid"
26-
id="treeGrid"
24+
name="grid"
25+
id="grid"
26+
id="grid"
2727
primary-key="ID"
2828
foreign-key="ParentID"
2929
moving="true"

samples/grids/tree-grid/column-moving-styles/src/index.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import "./index.css";
1111

1212
export class Sample {
1313

14-
private treeGrid: IgcTreeGridComponent
14+
private grid: IgcTreeGridComponent
1515
private column1: IgcColumnComponent
1616
private column2: IgcColumnComponent
1717
private column3: IgcColumnComponent
@@ -26,7 +26,7 @@ export class Sample {
2626
private _bind: () => void;
2727

2828
constructor() {
29-
var treeGrid = this.treeGrid = document.getElementById('treeGrid') as IgcTreeGridComponent;
29+
var grid = this.grid = document.getElementById('grid') as IgcTreeGridComponent;
3030
var column1 = this.column1 = document.getElementById('column1') as IgcColumnComponent;
3131
var column2 = this.column2 = document.getElementById('column2') as IgcColumnComponent;
3232
var column3 = this.column3 = document.getElementById('column3') as IgcColumnComponent;
@@ -40,7 +40,7 @@ export class Sample {
4040
var column11 = this.column11 = document.getElementById('column11') as IgcColumnComponent;
4141

4242
this._bind = () => {
43-
treeGrid.data = this.employeesFlatDetails;
43+
grid.data = this.employeesFlatDetails;
4444
column1.headerTemplate = this.webTreeGridPinHeaderTemplate;
4545
column2.headerTemplate = this.webTreeGridPinHeaderTemplate;
4646
column3.headerTemplate = this.webTreeGridPinHeaderTemplate;
@@ -86,7 +86,7 @@ export class Sample {
8686
    };
8787

8888
public toggleColumnPin(field: string) {
89-
    var grid = this.treeGrid;
89+
    var grid = this.grid;
9090
    var col = grid.getColumnByName(field);
9191
    col.pinned = !col.pinned;
9292
    grid.markForCheck();

0 commit comments

Comments
 (0)