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


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


CreatePivotTable(WebWorksheet, WebCell)

Creates PivotTable report to the targetSheet.

public PivotTable CreatePivotTable(WebWorksheet targetSheet, WebCell targetCell)
ParameterTypeDescription
targetSheetWebWorksheetThe sheet that the pivotTable report will paint to
targetCellWebCellThe 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


CreatePivotTable(WebWorksheet, WebCell, string)

Creates PivotTable report to the targetSheet.

public PivotTable CreatePivotTable(WebWorksheet targetSheet, WebCell targetCell, string tableName)
ParameterTypeDescription
targetSheetWebWorksheetThe sheet that the pivotTable report will paint to
targetCellWebCellThe start cell that the pivotTable report will paint to
tableNameStringThe 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