Completed
Last Updated: 21 Sep 2022 05:47 by ADMIN
Release LIB 2022.3.926 (26 Sep 2022)
ADMIN
Created by: Peshito
Comments: 0
Category: Spreadsheet
Type: Bug Report
0
The series is not drawn correctly. The data points are drawn over the same XValue.
Completed
Last Updated: 21 Sep 2022 05:45 by ADMIN
Release LIB 2022.3.926 (26 Sep 2022)
Bubble charts are created differently than the way it is in Excel. In excel the data point data is read vertically and in RadSpreadsheet - horizontally.
Completed
Last Updated: 16 Aug 2022 06:43 by ADMIN
Release LIB 2022.2.822 (22 Aug 2022)
Selecting the whole column and then opening the Charts dialog makes the app hang
Completed
Last Updated: 04 Jul 2022 07:23 by ADMIN
Release LIB 2022.2.704 (04 Jul 2022)
Custom styles are not visible in the style gallery after importing a document.
Completed
Last Updated: 07 Jun 2022 07:28 by ADMIN
Release LIB 2022.2.613 (13 Jun 2022)

The button should always be active. 

The button:

Completed
Last Updated: 26 May 2022 11:09 by ADMIN
Release LIB 2022.2.530 (30 May 2022)
When replying to someone else`s SpreadsheetComment, the SpreadsheetCommentReply`s author copies the comments author instead of passing the current author`s name.
Completed
Last Updated: 30 May 2022 09:26 by ADMIN
Release LIB 2022.2.530 (30 May 2022)
InvalidOperationException thrown by RowColumnHeadingBase.get_NormalFillBrush() with Crystal theme.
Completed
Last Updated: 30 May 2022 11:23 by ADMIN
Release LIB 2022.2.606 (06 Jun 2022)

When the Freeze Panes option is enabled and try to insert a new comment into the next cell on the left to the Freeze Panes separator the comment is deleted.

Completed
Last Updated: 12 Apr 2022 15:28 by ADMIN
Release LIB 2022.1.418 (18 Apr 2022)
NullReferenceException is thrown when Undo is clicked and Clear Contents of an image is performed.
Completed
Last Updated: 04 Mar 2022 07:47 by ADMIN
Release LIB 2022.1.307 (07 Mar 2021)
Some documents with conditional formatting occasionally throw an ArgumentOutOfRangeException due to an internal issue with dfsx indexing.
Completed
Last Updated: 14 Dec 2021 16:34 by ADMIN
Release LIB 2021.3.1220 (20 Dec 2021)
Created by: EuroEager2008
Comments: 0
Category: Spreadsheet
Type: Bug Report
0

Fill right shortcut (Ctrl + R) does not work 

As a workaround, manually register the combination:

public MainWindow()
{
    InitializeComponent();
    this.radSpreadsheet.ActiveSheetChanged += RadSpreadsheet_ActiveSheetChanged;
    
    this.Loaded += MainWindow_Loaded;
}

private void MainWindow_Loaded(object sender, RoutedEventArgs e)
{
    RegisterFillRight();
}

private void RadSpreadsheet_ActiveSheetChanged(object sender, EventArgs e)
{
    RegisterFillRight();
}
public void RegisterFillRight()
{
    RadWorksheetEditor worksheetEditor = this.radSpreadsheet.ActiveWorksheetEditor;

    if (this.radSpreadsheet.ActiveWorksheetEditor != null)
    {
        worksheetEditor.KeyBindings.RegisterCommand(worksheetEditor.Commands.FillRight, Key.R, ModifierKeys.Control);
    }
}

Completed
Last Updated: 10 Dec 2021 12:00 by ADMIN
Release LIB 2021.3.1213 (13 Dec 2021)

There are several items that currently cannot be localized:

  • Fit Sheet on One page
  • Fit All Columns on One page
  • Fit All Rows on One page

The headers and the description of the items have hardcoded strings.

Completed
Last Updated: 10 Dec 2021 11:17 by ADMIN
Release LIB 2021.3.1213 (13 Dec 2021)

When importing a document containing a hyperlink formula (e.g. "=HYPERLINK(B2,A2)") an exception is thrown: System.Collections.Generic.KeyNotFoundException: 'The given key was not present in the dictionary.'

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: 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: 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.