When trying to run chart.Calculate()
on a specific chart in a specific .xls file, Aspose is throwing an ArgumentOutOfRangeException
. The chart is particularly empty.
Reproduction snippet:
const string filename = "TestData\\NativeExcel\\ChartWithIndexOutOfRange.xls";
var asposeLoadOptions = new LoadOptions(LoadFormat.Auto)
{
LoadFilter = new LoadFilter(LoadDataFilterOptions.All)
};
using (var workbook = new Workbook(filename, asposeLoadOptions))
{
workbook.Worksheets[0].Charts[0].Calculate();
}
ChartWithIndexOutOfRange.zip (Client File, reduced to specific issue) (9.3 KB)