We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 77e078d commit b3818fdCopy full SHA for b3818fd
1 file changed
projects/igniteui-angular/src/lib/grids/pivot-grid/pivot-row-header-group.component.ts
@@ -157,4 +157,11 @@ export class IgxPivotRowHeaderGroupComponent extends IgxGridHeaderGroupComponent
157
public override get selectable(): boolean {
158
return false;
159
}
160
+
161
+ protected getHeaderWidthFromDimension() {
162
+ if (this.grid.hasHorizontalLayout) {
163
+ return this.dimWidth === -1 ? 'fit-content' : this.width;
164
+ }
165
+ return this.grid.rowDimensionWidth(this.parent.rootDimension);
166
167
0 commit comments