Analyzing your prompt, please hold on...
An error occurred while retrieving the results. Please refresh the page and try again.
The following sample code loads the sample excel file without charts and saves it in output pdf format.
//Specify the load options and filter the data
//We do not want to load charts
LoadOptions options = new LoadOptions();
options.setLoadFilter(new LoadFilter(LoadDataFilterOptions.ALL & ~LoadDataFilterOptions.CHART));
//Load the workbook with specified load options
Workbook workbook = new Workbook("sample.xlsx", options);
//Save the workbook in output format
workbook.save("LoadExcelFileWithoutChart_out.pdf", SaveFormat.PDF);Analyzing your prompt, please hold on...
An error occurred while retrieving the results. Please refresh the page and try again.