Completed
Last Updated: 12 Feb 2021 12:00 by ADMIN
Release LIB 2021.1.215 (15/2/2021)
If a workbook contains a worksheet with RowHeight bigger than 600px (SpreadsheetDefaultValues.MaxRowHeight), an exception is thrown while trying to import such a document. 
Completed
Last Updated: 08 Feb 2021 15:00 by ADMIN
Release LIB 2021.1.215 (15/2/2021)
When importing a document containing a ChartSheet (currently not supported: Implement support for ChartSheet) with a smaller tab index than the WorkSheet an ArgumentOutOfRangeException is thrown.
Completed
Last Updated: 15 Dec 2020 13:48 by ADMIN
Release LIB 2020.3.1221 (21/12/2020)

When the column width is decreasing below the size of the filter button the size of the button remains the same and overlaps the previous button.

Completed
Last Updated: 02 Dec 2020 13:15 by ADMIN
Release LIB 2020.3.1207 (07/12/2020)
When the users copy an image and paste it to another RadSpreadsheet, then export the Workbook to XLSX, the generated document contains invalid relation as the image is not properly registered inside the resources of the workbook.
Completed
Last Updated: 03 Nov 2020 08:05 by ADMIN
Release LIB 2020.3.1109 (09/11/2020)
The selected text is not readable when the Worksheet tab is in Edit mode and the applied theme is dark.

Reproducible in NoXaml scenario and for all dark themes except Fluent Dark.
Completed
Last Updated: 20 Oct 2020 13:54 by ADMIN
Release R2 2020
Unplanned
Last Updated: 30 Jul 2020 11:13 by ADMIN
Unplanned
Last Updated: 27 Jul 2020 12:00 by ADMIN

The scroll exceeds the visible area when using the auto-fill.

Steps to reproduce:

- Set the VisibleSize to (10 ,10)

- Drag the autofill icon down

 

Unplanned
Last Updated: 09 Jul 2020 10:53 by ADMIN
Setting a tab color from API:
this.radSpreadsheet.ActiveWorksheet.ViewState.TabColor = new ThemableColor(Colors.Red);
doesn't fire a UI update.
Completed
Last Updated: 22 Jun 2020 07:28 by ADMIN
Release R2 2020 SP1
When changing only number separators and leave the default currency separators values entered in the cells are displayed with wrong separators.
Completed
Last Updated: 18 Jun 2020 11:56 by ADMIN
Release R2 2020 SP1
When setting Wrap Text to an already merged CellSelection the row height is recalculated according to the cell height instead of keeping the initial height of the row.
Unplanned
Last Updated: 22 May 2020 09:34 by ADMIN
The chart is blinking when the SetValue method is used
Completed
Last Updated: 31 Mar 2020 11:10 by ADMIN
Release R2 2020
At the moment the print settings set to the WorksheetPageSetup class are not passed to the Print dialog which leads to bad user experience. If you set the print settings of the RadSpreadsheet like so:

WorksheetPageSetup pageSetup = this.radSpreadsheet.Workbook.ActiveWorksheet.WorksheetPageSetup;
pageSetup.PageOrientation = PageOrientation.Landscape;

and then select Print, the Spreadsheet print menu will show the print preview as landscape. However, when after that you click on Print for the default print dialog to appear and then click Preferences, you will notice that the preference is set to Portrait. The print job will be Landscape, but the incorrect information in the default dialog creates confusion.

This is an example of how to set the preference of the default dialog:

PrintDialog printDialog = new PrintDialog();
var printTicket = printDialog.PrintTicket;
printTicket.PageOrientation = System.Printing.PageOrientation.Landscape;
Unplanned
Last Updated: 21 Feb 2020 09:42 by ADMIN
The Outline and Marker properties of the Scatter series are not rendered correctly
Completed
Last Updated: 11 Feb 2020 12:52 by ADMIN
Release LIB 2020.1.217 (02/17/2020)
An ArgumentOutOfRangeException is thrown when importing a spreadsheet with the first sheet hidden: VisibleSheetCount should be greater or equal to 1.
Unplanned
Last Updated: 04 Feb 2020 12:38 by ADMIN

The used cell range is expanded when styles to all columns are applied and one copies an entire row.

Workaround:

private void RadSpreadsheet_WorkbookChanged(object sender, EventArgs e)
{
    var range = this.radSpreadsheet.Workbook.ActiveWorksheet.UsedCellRange;
    this.radSpreadsheet.ActiveWorksheet.Columns[range.ColumnCount + 1, SpreadsheetDefaultValues.ColumnCount - 1].Clear(ClearType.All);
}

Unplanned
Last Updated: 20 Jan 2020 05:47 by ADMIN

To reproduce: 

- Select some cells within the same column using Ctrl+Click

- Use the context menu to copy the cells

This works in Excel when the cells are within the same column. 

Completed
Last Updated: 15 Jan 2020 12:47 by ADMIN
Release R1 2020
The background should be stretched along with the item itself. It is currently with specified width.
Workaround: Modify the style and change the width of the tab item. A sample is attached.
Unplanned
Last Updated: 11 Dec 2019 15:26 by ADMIN

 Exception when exporting document that contains links with an empty address.

Workaround:

private void Button_Click_1(object sender, RoutedEventArgs e)
{
    foreach (SpreadsheetHyperlink item in this.radSpreadsheet.Workbook.ActiveWorksheet.Hyperlinks.ToList())
    {
        if (string.IsNullOrEmpty(item.HyperlinkInfo.Address))
        {
            this.radSpreadsheet.Workbook.ActiveWorksheet.Hyperlinks.Remove(item);

        }
    }
    
}

Unplanned
Last Updated: 05 Dec 2019 11:20 by ADMIN

To reproduce; 

- Set the language to Korean

- Type "r" in one of the cells

- Use the AutoFill functionality

At this point, FatalExecutionEngineError occurs (see attached).