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.

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: 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: 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: 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.'
Duplicated
Last Updated: 13 Mar 2023 15:26 by ADMIN
When importing a document containing a formula with an invalid reference an exception is thrown: FormulaParseException: 'Unused input [A1] after attempting to parse the formula [#REF!A1]'
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.
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 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.
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: 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: 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.