()
| 124 | } |
| 125 | |
| 126 | getRightFrozenColumnsWidth() { |
| 127 | return this._cache('rightFrozenColumnsWidth', () => { |
| 128 | return this.recomputeColumnsWidth(this.getRightFrozenColumns()); |
| 129 | }); |
| 130 | } |
| 131 | |
| 132 | recomputeColumnsWidth(columns) { |
| 133 | return columns.reduce((width, column) => width + column.width, 0); |
no test coverage detected