Completed
Last Updated: 31 Mar 2020 11:10 by ADMIN
Release R2 2020
At the moment the print settings set to the WorksheetPageSetup class are not passed to the Print dialog which leads to bad user experience. If you set the print settings of the RadSpreadsheet like so:

WorksheetPageSetup pageSetup = this.radSpreadsheet.Workbook.ActiveWorksheet.WorksheetPageSetup;
pageSetup.PageOrientation = PageOrientation.Landscape;

and then select Print, the Spreadsheet print menu will show the print preview as landscape. However, when after that you click on Print for the default print dialog to appear and then click Preferences, you will notice that the preference is set to Portrait. The print job will be Landscape, but the incorrect information in the default dialog creates confusion.

This is an example of how to set the preference of the default dialog:

PrintDialog printDialog = new PrintDialog();
var printTicket = printDialog.PrintTicket;
printTicket.PageOrientation = System.Printing.PageOrientation.Landscape;
Unplanned
Last Updated: 21 Feb 2020 09:42 by ADMIN
The Outline and Marker properties of the Scatter series are not rendered correctly
Unplanned
Last Updated: 12 Feb 2020 08:24 by ADMIN
Created by: Sudhanshu
Comments: 0
Category: Spreadsheet
Type: Feature Request
7
A sparkline is a tiny chart in a worksheet cell that provides a visual representation of data that is currently not supported.
Completed
Last Updated: 11 Feb 2020 12:52 by ADMIN
Release LIB 2020.1.217 (02/17/2020)
An ArgumentOutOfRangeException is thrown when importing a spreadsheet with the first sheet hidden: VisibleSheetCount should be greater or equal to 1.
Unplanned
Last Updated: 07 Feb 2020 08:54 by ADMIN
Created by: Fred
Comments: 0
Category: Spreadsheet
Type: Feature Request
1
Currently, there is an option to export the spreadsheet to PDF file and using RadPdfViewer`s WPF control ThumbnailFactory class to export the PDF document pages to images. Sample code may be seen at this public item: PdfProcessing: Export document pages to images.
Unplanned
Last Updated: 05 Feb 2020 12:03 by ADMIN
Currently, the CellPropertyChanged event gives information only about which property is changed and in which cell range. But you can not get information about the exact change if it is set value, or clear. Also, the CommandExecuted event does not give you information about the executed command. Is if Set command? Clear command or something else.
Unplanned
Last Updated: 04 Feb 2020 12:38 by ADMIN

The used cell range is expanded when styles to all columns are applied and one copies an entire row.

Workaround:

private void RadSpreadsheet_WorkbookChanged(object sender, EventArgs e)
{
    var range = this.radSpreadsheet.Workbook.ActiveWorksheet.UsedCellRange;
    this.radSpreadsheet.ActiveWorksheet.Columns[range.ColumnCount + 1, SpreadsheetDefaultValues.ColumnCount - 1].Clear(ClearType.All);
}

Unplanned
Last Updated: 20 Jan 2020 05:47 by ADMIN

To reproduce: 

- Select some cells within the same column using Ctrl+Click

- Use the context menu to copy the cells

This works in Excel when the cells are within the same column. 

Completed
Last Updated: 15 Jan 2020 12:47 by ADMIN
Release R1 2020
The background should be stretched along with the item itself. It is currently with specified width.
Workaround: Modify the style and change the width of the tab item. A sample is attached.
Completed
Last Updated: 15 Jan 2020 12:44 by ADMIN
Release R1 2020
ADMIN
Created by: Anna
Comments: 0
Category: Spreadsheet
Type: Feature Request
2
Implement UI for hiding sheet. The sheets can be visible, hidden, or very hidden (could be made visible only from the API).

Note: This is already supported on model level (in RadSpreadProcessing).
Unplanned
Last Updated: 11 Dec 2019 15:26 by ADMIN

 Exception when exporting document that contains links with an empty address.

Workaround:

private void Button_Click_1(object sender, RoutedEventArgs e)
{
    foreach (SpreadsheetHyperlink item in this.radSpreadsheet.Workbook.ActiveWorksheet.Hyperlinks.ToList())
    {
        if (string.IsNullOrEmpty(item.HyperlinkInfo.Address))
        {
            this.radSpreadsheet.Workbook.ActiveWorksheet.Hyperlinks.Remove(item);

        }
    }
    
}

Unplanned
Last Updated: 11 Dec 2019 07:38 by ADMIN
Created by: n/a
Comments: 1
Category: Spreadsheet
Type: Feature Request
1

Hi,

I think it would be really cool to include a search bar in the filter window, as implemented in Excel (Please find attached a screenshot for demonstration). This is a very useful functionality, as there may be too many options to choose from is the filter is added to subject ID, which could result in thousands IDs.

Unplanned
Last Updated: 05 Dec 2019 11:20 by ADMIN

To reproduce; 

- Set the language to Korean

- Type "r" in one of the cells

- Use the AutoFill functionality

At this point, FatalExecutionEngineError occurs (see attached).  

Completed
Last Updated: 29 Nov 2019 07:11 by ADMIN
Release 2019.3.1202 (12/02/2019)
ADMIN
Created by: Todor
Comments: 2
Category: Spreadsheet
Type: Feature Request
1
Currently it's not possible to disable the fill handle feature. Provide API for disabling it.

Workaround: in the attached project.
Unplanned
Last Updated: 21 Nov 2019 12:29 by ADMIN
The style name "+-" is a valid one, but the StyleGallery crashes because it tries to set the name as a value of a cell and it is not a valid cell value.
Unplanned
Last Updated: 18 Nov 2019 11:03 by ADMIN
Created by: Petar
Comments: 0
Category: Spreadsheet
Type: Feature Request
1
Currently, this can be achieved partially by using the FlowDirection property but the result could be unexpected for right-to-left. 
Unplanned
Last Updated: 11 Nov 2019 12:57 by ADMIN
Right now this functionality is missing and the user is not able to scroll the viewer when the row header is selected and not the cell.
Completed
Last Updated: 01 Nov 2019 08:11 by ADMIN
Release LIB 2019.3.1104 (10/07/2019)

The issue is a regression introduced in R3 2019. When the cells in a hidden column are with IsWrapped=true, an ArgumentOutOfRangeException is thrown during the text measuring. The behavior is related to SpreadProcessing as well.

Workaround: Remove the wrapping from the hidden cells:

 

var usedCellRange = workbook.ActiveWorksheet.GetUsedCellRange(new IPropertyDefinition[] { CellPropertyDefinitions.IsWrappedProperty});

for (int row = usedCellRange.FromIndex.RowIndex; row <= usedCellRange.ToIndex.RowIndex; row++)
{
    for (int column = usedCellRange.FromIndex.ColumnIndex; column <= usedCellRange.ToIndex.ColumnIndex; column++)
    {
        if (workbook.ActiveWorksheet.Columns[column].GetHidden().Value)
        {
            workbook.ActiveWorksheet.Cells[row, column].SetIsWrapped(false);
        }
    }
}

 

Completed
Last Updated: 10 Sep 2019 14:17 by ADMIN
Release R3 2019
A resource cannot be found and an exception is thrown for a WPF Net Core project.
Unplanned
Last Updated: 04 Sep 2019 12:19 by ADMIN
Print Preview's "Fit All Columns on One page" does not fit columns on one page.