Completed
Last Updated: 21 Aug 2020 10:19 by ADMIN
Release R3 2020
Exception when the sheet name contains a single letter 
Unplanned
Last Updated: 20 Aug 2020 06:45 by ADMIN
The filter icon is shown in merged cells after import export
Unplanned
Last Updated: 19 Aug 2020 13:51 by ADMIN
Currently, the text orientation for cell content is not exported when exporting to PDF format.
Completed
Last Updated: 29 Jul 2020 14:41 by ADMIN
Release R3 2020
Wrongly exported image size when the size of the image is different than the original image size in .NET Standard.
Unplanned
Last Updated: 24 Jul 2020 11:25 by ADMIN
Currently, if there is an unsupported feature in the imported document it is stripped and not preserved in the document model (the Workbook). When exporting the Workbook the resulting document contains only the supported features.
Unplanned
Last Updated: 15 Jul 2020 16:37 by ADMIN

Hi Telerik,

 

I would like to request 1 feature to be added in Current RADGRID control which is to exporting grid data to into Excel 2016 version.

We need this feature because one of our supporting application will work only with  Excel 2016 version, where as the current RADGRID conversion only able to export to EXCEL 2007 (excel 12) format.

 

Thank you.

 

 

Unplanned
Last Updated: 13 Jul 2020 12:20 by ADMIN
According to the Open XML documentation, the possible max value for this attribute is an unsignedInt or 4294967295.
Unplanned
Last Updated: 09 Jul 2020 06:22 by ADMIN
Created by: George
Comments: 0
Category: SpreadProcessing
Type: Feature Request
4
Microsoft Excel supports 2 types of date. Date is the number of days starting from 1/1/1900 or 1/1/1904. The first one is the default the second one has been added cause Macintosh supports it. The Microsoft library supports both of them and you can choose programmatically which one you prefer (https://docs.microsoft.com/en-us/dotnet/api/microsoft.office.interop.excel._workbook.date1904?view=excel-pia). Expose such an option in SpreadProcessing as well.
Completed
Last Updated: 03 Jul 2020 10:28 by ADMIN
Release R3 2020
The Office Open XML model doesn't support the transparency of the colors inside a document. Even if an alpha channel is used for the colors, this should not be respected by SpreadProcessing and the colors should be without any opacity.
Completed
Last Updated: 03 Jul 2020 09:55 by ADMIN
Release R3 2020
Created by: Luke
Comments: 1
Category: SpreadProcessing
Type: Feature Request
0
When importing a spreadsheet document whose cells use a style that is not defined in the document stylesheet, a KeyNotFoundException is thrown. The style can be just skipped so that the document can be imported without errors.
Completed
Last Updated: 02 Jul 2020 12:01 by ADMIN
Release R3 2020
When a formula contains new lines, it is parsed incorrectly as follows:

- When it is shared formula it breaks the imported expression and replaces it with #NAME? error.
- In normal case it simply preserves the formula string converting it to StringExpression.

Workaround: Remove the new lines in the formulas.

Have in mind that this code will fix the issue only for the second scenario, when the formula is not shared.

CellRange usedCellRange = workbook.ActiveWorksheet.UsedCellRange;

for (int row = usedCellRange.FromIndex.RowIndex; row < usedCellRange.ToIndex.RowIndex; row++)
{
    for (int column = usedCellRange.FromIndex.ColumnIndex; column < usedCellRange.ToIndex.ColumnIndex; column++)
    {
        CellSelection cell = workbook.ActiveWorksheet.Cells[row, column];
        ICellValue value = cell.GetValue().Value;

        if (value.RawValue.Contains("\n"))
        {
            cell.SetValue(value.RawValue.Replace('\n', ' '));
        }
    }
}
Unplanned
Last Updated: 26 Jun 2020 07:11 by ADMIN
The chart axes are not correctly imported when there are floating and sheet charts
Completed
Last Updated: 22 Jun 2020 14:39 by ADMIN
Release R3 2020
Currently, the calculation of the actual ScaleFactor is based only on Worksheet`s UsedCellRange.
Unplanned
Last Updated: 22 Jun 2020 12:51 by ADMIN
The content of the merged cells is measured and affects the CenterHorizontally behavior. Only the first cell from the merged range should have content. This is the default behavior in MS excel when cells are merged as well.
Completed
Last Updated: 10 Jun 2020 12:41 by ADMIN
Release R2 2020 SP1
Implement text orientation for cell content import/export from/to XLSX format
Completed
Last Updated: 04 Jun 2020 06:43 by ADMIN
Release R2 2020 SP1

NullReferenceException when the FindOptions does not contain start cell

Workaround:

Set StatCell like this:

FindOptions options = new FindOptions()
{
    FindWhat = "Record",
    MatchEntireCellContents = true,
    StartCell = new WorksheetCellIndex(workbook.Worksheets[0], new CellIndex(0,0))

};
Completed
Last Updated: 26 May 2020 09:05 by ADMIN
Release LIB 2020.2.525 (05/25/2020)
Completed
Last Updated: 14 Apr 2020 12:51 by ADMIN
Release R2 2020
Completed
Last Updated: 14 Apr 2020 12:21 by ADMIN
Release R2 2020
When inserting row or column before cell containing reference to another worksheet the reference should not be translated.
Completed
Last Updated: 14 Apr 2020 12:10 by ADMIN
Release R2 2020
Created by: Stephen
Comments: 1
Category: SpreadProcessing
Type: Bug Report
0
If the lookup_value parameter and lookup_vector parameters refer cells containing text values, the function returns a Not available error ("#N/A").