Completed
Last Updated: 19 Oct 2021 14:59 by ADMIN
Release LIB 2021.3.1025 (25 Oct 2021)

The WorkbookContentChanged event is invoked right after importing a document. 

Completed
Last Updated: 18 Oct 2021 06:39 by ADMIN
Release LIB 2021.3.1018 (18 Oct 2021)
If you set, for example, two copies, the printed copies will be 4. If you select three copies, the result will be nine copies.
Completed
Last Updated: 11 Oct 2021 08:28 by ADMIN
Release LIB 2021.3.1011 (11 Oct 2021)
Add sheet button is hidden when there are many sheets. This should be checked with all themes.
Completed
Last Updated: 05 Oct 2021 12:52 by ADMIN
Release LIB 2021.3.1011 (11 Oct 2021)
ADMIN
Created by: Nikolay Demirev
Comments: 0
Category: Spreadsheet
Type: Bug Report
0

The outline properties of the chart series are not respected by most charts.

Completed
Last Updated: 04 Oct 2021 13:42 by ADMIN
Release LIB 2021.3.1011 (11 Oct 2021)
Exporting a document containing images anchored to a cell with a large offset causes the images to be stretched when imported in Excel.
Completed
Last Updated: 04 Oct 2021 13:35 by ADMIN
Release LIB 2021.3.1011 (11 Oct 2021)
The problem is that the spreadsheet wants to identify the main window. The main window is not known to the plugin and should not be, because it is located in a different app domain due to the specifics of the architecture (https://docs.microsoft.com/en-us/archive/msdn-magazine/2014/january/wpf-build-fault-tolerant-composite-applications).
Completed
Last Updated: 04 Oct 2021 10:45 by ADMIN
Release LIB 2021.3.927 (27 Sep 2021)
When importing a document containing a destination that does not refer to a formula an exception is thrown: System.NullReferenceException: 'Object reference not set to an instance of an object.'
Completed
Last Updated: 27 Sep 2021 07:35 by ADMIN
Release LIB 2019.2.812 (08/12/2019)
ADMIN
Created by: Nikolay Demirev
Comments: 0
Category: Spreadsheet
Type: Bug Report
0

The scale factor is not imported from documents with no information about the selection state.

Unplanned
Last Updated: 24 Sep 2021 06:14 by ADMIN
Value of a cell is visualized outside of the cell boundaries, or the value is clipped and partially visible, when the cell is updated (from code-behind), while being in an inactive worksheet, and is referenced by another cell from the active sheet.

Workaround: get a value of some cell in the active sheet and set it again to the same cell.

The issue is reproducible after the official release of Q1 2015.
Unplanned
Last Updated: 25 Aug 2021 12:00 by ADMIN
Creating a chart with a title in excel, importing it in RadSpredsheet, and then exporting it to XLSX changes the size of the chart's title and labels.
Unplanned
Last Updated: 03 Aug 2021 13:59 by ADMIN

Setting up a paper size to A1 and exporting it actually sets the paperSize to 1. Using the same scenario in Excel sets the paperSize to 305.

This leads to inappropriate values when entering the Page Setup options later in Excel.

Completed
Last Updated: 21 Jul 2021 12:03 by ADMIN
Release LIB 2021.2.726 (26 Jul 2021)
When a cell that has a defined name is selected, the associated name should appear in the name box. However, when the cell is part of a merged range, its row and column name (A1) is shown instead of the defined name.
Unplanned
Last Updated: 07 Jul 2021 10:39 by ADMIN
Created by: Fred
Comments: 0
Category: Spreadsheet
Type: Bug Report
1
Changing the active sheet in code removes the frozen panes.
Unplanned
Last Updated: 17 Jun 2021 11:06 by ADMIN

Hi,

Excel files containing charts, created in Excel are displayed incorrectly in Telerik spreadsheet control.

Excel view:

 

Telerik:

 

Line colors and dots are incorrect.

Excel file loaded in Telerik WPF demo app. Test file is attached.

Regards Robby

Completed
Last Updated: 10 Jun 2021 13:40 by ADMIN
Release R2 2021 SP1

Combo chart with datetime axis and line/bar/area as a first series and scatter series as a second one throws InvalidCastException.

This can happen both with opening an xlsx file with such a chart or creating it in code. Such a chart cannot be created with the Insert Chart dialog (combo type is not yet supported via UI).

Completed
Last Updated: 10 Jun 2021 12:06 by ADMIN
Release R2 2021 SP1
Created by: Robby
Comments: 0
Category: Spreadsheet
Type: Bug Report
0
The dropdown button from the name box cannot be scrolled, thus not all the defined names are visible there. Still, they can be seen in the Name Manager dialog.
Completed
Last Updated: 10 Jun 2021 11:17 by ADMIN
Release R2 2021 SP1
NullReferenceException when importing a scatter chart with only one axis 
Unplanned
Last Updated: 20 Apr 2021 11:20 by ADMIN

The current worksheet is not updated if the workbook is set while the control is disabled.

Workaround: 

private void RadButton_Click( object sender, RoutedEventArgs e )
{
    radSpreadsheet.IsEnabled = false;
  
    Workbook spreadsheetWorkbook =
        new XlsxFormatProvider( ).Import( File.ReadAllBytes( @"..\..\Book2.xlsx" ) );
  
    radSpreadsheet.Workbook = new Workbook( );
  
    Dispatcher.InvokeAsync( ( ) => radSpreadsheet.Workbook = spreadsheetWorkbook );
  
    radSpreadsheet.IsEnabled = true;
}

Completed
Last Updated: 06 Apr 2021 12:01 by ADMIN
Release LIB 2021.1.412 (12/04/2021)

RadSpreadsheet exposes API enabling the users to control the visibility of the sheet selector:

RadSpreadsheetSheetSelector.SetIsSheetSelectorVisible(radSpreadsheet, isVisible);

When the SetIsSheetSelectorVisible method is invoked with false value for the isVisible parameter, its parent container is still visible in the UI.

Completed
Last Updated: 29 Mar 2021 12:50 by ADMIN
Release LIB 2021.1.504 (05/04/2021)

When attaching to the CellPropertyChanged event and trying to modify the cell an exception is thrown:

if firstly detached from the event and then modify the cell the exception is: 
System.InvalidOperationException: 'Collection was modified; enumeration operation may not execute.' 

else:
System.StackOverflowException: 'Exception of type 'System.StackOverflowException' was thrown.'