Last active
April 26, 2021 18:51
-
-
Save aspose-com-gists/619c240a0fdeeaf0db0bae5d390ae3de to your computer and use it in GitHub Desktop.
Create Pivot Tables in Excel Java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Instantiate an Workbook object | |
Workbook workbook = new Workbook("pivotTable.xls"); | |
// Add a new sheet | |
int sheetIndex = workbook.getWorksheets().add(SheetType.CHART); | |
Worksheet sheet3 = workbook.getWorksheets().get(sheetIndex); | |
// Name the sheet | |
sheet3.setName("PivotChart"); | |
// Add a column chart | |
int chartIndex = sheet3.getCharts().add(ChartType.COLUMN, 0, 5, 28, 16); | |
Chart chart = sheet3.getCharts().get(chartIndex); | |
// Set the pivot chart data source | |
chart.setPivotSource("PivotTable!PivotTable1"); | |
chart.setHidePivotFieldButtons(false); | |
// Save the Excel file | |
workbook.save("pivotChart_test.xls"); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Instantiate an Workbook object | |
Workbook workbook = new Workbook("worksheet.xlsx"); | |
// Access the sheet | |
Worksheet sheet2 = workbook.getWorksheets().get(1); | |
// Get the pivottables collection in the sheet | |
PivotTableCollection pivotTables = sheet2.getPivotTables(); | |
// Add a PivotTable to the worksheet | |
int index = pivotTables.add("=Data!A1:F30", "B3", "PivotTable1"); | |
// Access the instance of the newly added PivotTable | |
PivotTable pivotTable = pivotTables.get(index); | |
// Show the grand totals | |
pivotTable.setRowGrand(true); | |
pivotTable.setColumnGrand(true); | |
// Set the PivotTable report is automatically formatted | |
pivotTable.setAutoFormat(true); | |
// Set the PivotTable autoformat type. | |
pivotTable.setAutoFormatType(PivotTableAutoFormatType.REPORT_6); | |
// Drag the first field to the row area. | |
pivotTable.addFieldToArea(PivotFieldType.ROW, 0); | |
// Drag the third field to the row area. | |
pivotTable.addFieldToArea(PivotFieldType.ROW, 2); | |
// Drag the second field to the row area. | |
pivotTable.addFieldToArea(PivotFieldType.ROW, 1); | |
// Drag the fourth field to the column area. | |
pivotTable.addFieldToArea(PivotFieldType.COLUMN, 3); | |
// Drag the fifth field to the data area. | |
pivotTable.addFieldToArea(PivotFieldType.DATA, 5); | |
// Set the number format of the first data field | |
pivotTable.getDataFields().get(0).setNumber(7); | |
// Save the Excel file | |
workbook.save("pivotTable.xls"); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment