File tree Expand file tree Collapse file tree 1 file changed +2
-8
lines changed
projects/igniteui-angular/src/lib/grids/pivot-grid Expand file tree Collapse file tree 1 file changed +2
-8
lines changed Original file line number Diff line number Diff line change @@ -113,20 +113,14 @@ export class IgxPivotRowDimensionContentComponent extends IgxGridHeaderRowCompon
113
113
return this . rowData [ col . field + this . grid . pivotKeys . rowDimensionSeparator + this . grid . pivotKeys . level ] ;
114
114
}
115
115
116
- get rowSpan ( ) {
116
+ public get rowSpan ( ) {
117
117
return this . rowData [ this . rowDimensionData . dimension . memberName + this . grid . pivotKeys . rowDimensionSeparator + 'rowSpan' ] || 1 ;
118
118
}
119
119
120
- get headerHeight ( ) {
120
+ public get headerHeight ( ) {
121
121
return this . rowSpan * this . grid . rowHeight + ( this . rowSpan - 1 ) ;
122
122
}
123
123
124
- get isFirst ( ) {
125
- const hasRowSpan = this . rowSpan && this . rowSpan > 1 ;
126
- return ! hasRowSpan || this . rowData [ this . rowDimensionData . dimension . memberName + this . grid . pivotKeys . rowDimensionSeparator + 'first' ] ;
127
- }
128
-
129
-
130
124
/**
131
125
* @hidden @internal
132
126
*/
You can’t perform that action at this time.
0 commit comments