jQuery/JS Common - Object Structures - ExcelExportPivotGridProps - topLeftCell
The cell is specified using coordinates in the Excel document. For example, the following code specifies cell B2:
- DevExpress.excelExporter.exportPivotGrid({
- // ...
- topLeftCell: { row: 2, column: 2 }
- });
You can also specify the topLeftCell using the Excel notation:
- DevExpress.excelExporter.exportPivotGrid({
- // ...
- topLeftCell: "B2"
- });
Feedback