In code behind, the following code will export the RadGrid data to an Excel file, but all the text has been wrapped.
RadGrid1.ExportSettings.ExportOnlyData = True
RadGrid1.ExportSettings.IgnorePaging = True
RadGrid1.MasterTableView.ExportToExcel()
If I manually select all the data and then click the "Wrap Text" button to disable wrapped text, the data seems good.
How can I disable the wrap function during export?