It used to work until Q3 2024:
After that, the import operation is successful. However, the image rendering of the SVG when assigning the Workbook results in an error message: System.ArgumentException: 'Parameter is not valid.'
public Form1()
{
InitializeComponent();
using (var fileStream = File.OpenRead("example.xlsx"))
{
Workbook wb = new XlsxFormatProvider().Import(fileStream);
radSpreadsheet.Workbook = wb;
}
}