Skip to content

Commit 43f6311

Browse files
refactor(pivot): remove deprecated shouldGenerate property
1 parent c04dcdb commit 43f6311

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

projects/igniteui-angular/src/lib/grids/pivot-grid/pivot-grid.component.ts

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -745,14 +745,13 @@ export class IgxPivotGridComponent extends IgxGridBaseDirective implements OnIni
745745

746746
/**
747747
* @hidden @internal
748-
* @deprecated in version 18.2.0. Column re-creation now relies on `autoGenerate` instead.
748+
* @deprecated in version 18.2.0. This property is no longer supported.
749749
*/
750750
public override get shouldGenerate(): boolean {
751-
return this.autoGenerate;
751+
return false;
752752
}
753753

754754
public override set shouldGenerate(value: boolean) {
755-
this.autoGenerate = value;
756755
}
757756

758757
/**

0 commit comments

Comments
 (0)