Метод Charts.getChartsCount
Метод возвращает общее количество диаграмм в табличном документе.
Пример
Table sheetDocumentPage = document.getBlocks().getTable(0);
if (sheetDocumentPage != null)
{
Charts charts = sheetDocumentPage.getCharts();
Console.WriteLine(charts.getChartsCount());
}