Steps to reproduce:
Refer to the attached video that illustrates the issue.
Expected results:
SpreadsheetControl doesn't freeze.
Current results:
SpreadsheetControl freezes the application.
Workaround:
As a workaround, you can set the CalculationEngineType property to CalculationEngineType.Recursive before loading the document:
C#this.spreadsheetControl1.Document.Options.CalculationEngineType = DevExpress.Spreadsheet.CalculationEngineType.Recursive;
this.spreadsheetControl1.LoadDocument(documentPath);