(model)
| 812 | // ========================================================================= |
| 813 | // Pivot Tables |
| 814 | addPivotTable(model) { |
| 815 | // eslint-disable-next-line no-console |
| 816 | console.warn( |
| 817 | `Warning: Pivot Table support is experimental. |
| 818 | Please leave feedback at https://github.com/exceljs/exceljs/discussions/2575` |
| 819 | ); |
| 820 | |
| 821 | const pivotTable = makePivotTable(this, model); |
| 822 | |
| 823 | this.pivotTables.push(pivotTable); |
| 824 | this.workbook.pivotTables.push(pivotTable); |
| 825 | |
| 826 | return pivotTable; |
| 827 | } |
| 828 | |
| 829 | // =========================================================================== |
| 830 | // Conditional Formatting |
no test coverage detected