Unplanned
Last Updated: 07 Dec 2021 11:27 by ADMIN

Cell Values disappearing when RadWindow is dragged to a second Monitor.

Workaround:

private void MainWindow_Loaded(object sender, RoutedEventArgs e)
{
    this.viewModel.OpenSampleCommand.Execute(null);
    radDocking1.ToolWindowCreated += RadDocking1_ToolWindowCreated;
}

private void RadDocking1_ToolWindowCreated(object sender, Telerik.Windows.Controls.Docking.ElementCreatedEventArgs e)
{
    var window = e.CreatedElement as ToolWindow;
    if (window != null)
    {
        window.WindowStateChanged += Window_WindowStateChanged;

    }
}

private void Window_WindowStateChanged(object sender, EventArgs e)
{
    var window = sender as ToolWindow;

    var spreadsheet = window.ChildrenOfType<RadSpreadsheet>().FirstOrDefault();
    if (spreadsheet != null)
    {
        spreadsheet.InvalidateVisual();
    }
}

 

Completed
Last Updated: 01 Nov 2021 09:00 by ADMIN
Release LIB 2021.3.1101
The style gallery is broken in the fluent theme and crashes the control
Completed
Last Updated: 20 Oct 2021 12:22 by ADMIN
Release R3 2021 SP1
The SpreadsheetML format has built-in reserved names. When such a name is defined in the scope of a worksheet, a SpreadsheetNameException is thrown during parsing the document.
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: 30 Aug 2021 08:28 by ADMIN
Provide a way to display function name that is different than the actual names saved in the XML.
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.