Cannot access text in worksheet

Hi, can you look at attached file, there is “TENDENCIAS DE RPN CUMULATIVO EN…” text that I do not know how to access. Here is what I have tried:

Workbook workbook = new Workbook();

try {
inputStream = getClass().getClassLoader().getResourceAsStream(path);

workbook.open(inputStream);

inputStream.close();
} catch (IOException e) {
throw new RuntimeException(e);
}

Worksheets worksheets = workbook.getWorksheets();

Worksheet worksheet = worksheets.getSheet(0);

Charts charts = worksheet.getCharts();

System.out.println("Charts size: " + charts.size()); // prints 0

TextBoxes textBoxes = worksheet.getTextBoxes();

System.out.println("TextBoxes size: " + textBoxes.size()); // prints 0

How can I access this text?

Thanks, Ivica.

Hi Ivica,

Currently, Aspose.Cells for Java does not support manipulating designer charts and drawing objects, we will support it soon.

Thank you.