I'm importing an excel spreadsheet into RadSpreadsheet, and everything is working great except for one thing.
Certain labels on my spreadsheet use subscript and superscript and the formatting is not showing up properly in RadSpreadsheet. The text just shows up as regular text. Here's the code I'm using to import the spreadsheet:
WorkbookFormatProvidersManager.RegisterFormatProvider(new XlsxFormatProvider());
FileStream input = new FileStream("Default.xlsx", FileMode.Open);
workbook = WorkbookFormatProvidersManager.Import("xlsx", input);
rssCalibration.Workbook = workbook;
Is there something else I need to be doing to get the subscript and superscript to display properly?