Unplanned
Last Updated: 26 Aug 2021 08:00 by ADMIN
Provide an easy way to bind or set the ApplicationName in the ribbon
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: 19 Aug 2021 15:12 by ADMIN
Created by: Robby
Comments: 0
Category: Spreadsheet
Type: Feature Request
2
TickLabelPosition is skipped on importing documents containing charts. When the Value axis has both positive and negative values being able to specify tick labels' position makes the chart readable, otherwise, labels are positioned in the middle of the chart. There are four positions - High, Low, NextTo and None.
Declined
Last Updated: 11 Aug 2021 08:26 by ADMIN
Created by: Philip
Comments: 4
Category: Spreadsheet
Type: Feature Request
0
Can we have the ability to hide the cell selector rectangle in the RadSpreadsheet? If we had this, along with the current existing functionality we would have spreadsheet capabilities inside what looks like an 'empty' page. It would be good for reporting purposes where the developer can make full use of the spreadsheet's functions but completely hide the 'spreadsheet look-and-feel' from the user.
Unplanned
Last Updated: 05 Aug 2021 09:56 by ADMIN
ADMIN
Created by: Tanya
Comments: 7
Category: Spreadsheet
Type: Feature Request
17
Provide the ability to work with images in headers/footers of a worksheet. Note that large images put in headers are visualized as watermarks on printing/exporting to PDF.
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: 03 Aug 2021 05:42 by ADMIN
Release R3 2021
ADMIN
Created by: Nikolay Demirev
Comments: 7
Category: Spreadsheet
Type: Feature Request
12
Add support for preserving and exporting the macros in a macro-enabled workbook.

Macros are pieces of code written in Visual Basic for Applications (VBA) which are used to automate repetitive tasks in excel. The macros are part of the excel file. When a file contains a macro its extension becomes xlsm.
Spreadsheet should be able to import and export xlsm files and edit the macros in them.
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

Unplanned
Last Updated: 17 Jun 2021 10:36 by ADMIN
Created by: Robby
Comments: 0
Category: Spreadsheet
Type: Feature Request
3
Currently, the chart's appearance can be customized through the model API. Let the user be able to customize it using the UI.
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.'

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. 
Unplanned
Last Updated: 09 Feb 2021 07:56 by ADMIN
Created by: David
Comments: 0
Category: Spreadsheet
Type: Feature Request
2
Enable users to localize the default styles names.
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.