PivotCache.CreatePivotTable
CreatePivotTable()
Creates PivotTable report to a new Sheet.
public PivotTable CreatePivotTable()
Return Value
The PivotTable object
Remarks
Calling this method will create a PivotTable object and a new worksheet. Then adds the PivotTable object to the last location of GridWeb.Worksheets.PivotTables. If You call the PivotTable.DataBind() method, the PivotTable report will be painted to the created worksheet.
See Also
- class PivotTable
- class PivotCache
- namespace Aspose.Cells.GridWeb.Data
- assembly Aspose.Cells.GridWeb
CreatePivotTable(string)
Creates PivotTable report to a new Sheet. The name of the pivotTable object
public PivotTable CreatePivotTable(string tableName)
Return Value
The PivotTable object
Remarks
Calling this method will create a PivotTable object and a new worksheet. Then adds the PivotTable object to the last location of GridWeb.Worksheets.PivotTables. If You call the PivotTable.DataBind() method, the PivotTable report will be painted to the created worksheet.
See Also
- class PivotTable
- class PivotCache
- namespace Aspose.Cells.GridWeb.Data
- assembly Aspose.Cells.GridWeb
CreatePivotTable(WebWorksheet, WebCell)
Creates PivotTable report to the targetSheet.
public PivotTable CreatePivotTable(WebWorksheet targetSheet, WebCell targetCell)
Parameter | Type | Description |
---|---|---|
targetSheet | WebWorksheet | The sheet that the pivotTable report will paint to |
targetCell | WebCell | The start cell that the pivotTable report will paint to |
Return Value
The PivotTable object
Remarks
Calling this method will create a PivotTable object Then adds the PivotTable object to the last location of GridWeb.Worksheets.PivotTables. If You call the PivotTable.DataBind() method, the PivotTable report will be painted to the targetSheet starting at the targetCell.
See Also
- class PivotTable
- class WebWorksheet
- class WebCell
- class PivotCache
- namespace Aspose.Cells.GridWeb.Data
- assembly Aspose.Cells.GridWeb
CreatePivotTable(WebWorksheet, WebCell, string)
Creates PivotTable report to the targetSheet.
public PivotTable CreatePivotTable(WebWorksheet targetSheet, WebCell targetCell, string tableName)
Parameter | Type | Description |
---|---|---|
targetSheet | WebWorksheet | The sheet that the pivotTable report will paint to |
targetCell | WebCell | The start cell that the pivotTable report will paint to |
tableName | String | The name of the pivotTable object |
Return Value
The PivotTable object
Remarks
Calling this method will create a PivotTable object naming tableName Then adds the PivotTable object to the last location of GridWeb.Worksheets.PivotTables. If You call the PivotTable.DataBind() method, the PivotTable report will be painted to the targetSheet starting at the targetCell.
See Also
- class PivotTable
- class WebWorksheet
- class WebCell
- class PivotCache
- namespace Aspose.Cells.GridWeb.Data
- assembly Aspose.Cells.GridWeb