Unplanned
Last Updated: 13 Jan 2026 12:57 by Dane
Dane
Created on: 13 Jan 2026 12:57
Category: Spreadsheet
Type: Bug Report
2
RadSpreadsheet: Control fails to render workbooks that contain SVG images.

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;
            }
        }

0 comments