Метод PivotTable::remove
Метод удаляет сводную таблицу.
Пример
Table sheet = document.getBlocks().getTable(0).get();
Cell cell = sheet.getCell("A1");
boost::optional<PivotTable> pivotTableOpt = cell.getPivotTable();
if (pivotTableOpt.has_value())
{
pivotTableOpt.get().remove();
}