Disable Pivot Table Ribbons

How to Disable Pivot Table Ribbon Using Aspose.Cells for Node.js via C++

Following code demonstrates this feature by accessing a pivot table from a sheet and then setting setEnableWizard to false. Sample pivot table file can be downloaded from this link.

const AsposeCells = require("aspose.cells.node");
//For complete examples and data files, please go to https:# github.com/aspose-cells/Aspose.Cells-for-.NET
//Open the template file containing the pivot table
var wb = new AsposeCells.Workbook("pivot_table_test.xlsx");
//Access the pivot table in the first sheet
var pt = wb.getWorksheets().get(0).getPivotTables().get(0);
//Disable ribbon for this pivot table
pt.setEnableWizard(false);
//Save output file
wb.save("out.xlsx")