Completed
Last Updated: 15 Sep 2021 13:15 by ADMIN
Release R3 2021

To reproduce: 

CultureInfo cultureInfo = new CultureInfo("es-ES");
var currency_info = new Telerik.Windows.Documents.Spreadsheet.Formatting.FormatStrings.CurrencyInfo(cultureInfo.NumberFormat.CurrencySymbol, cultureInfo);
var format_string = AccountingFormatStringBuilder.BuildFormatString(currency_info, cultureInfo.NumberFormat.CurrencyDecimalDigits);
 
Completed
Last Updated: 20 Jul 2021 15:00 by ADMIN
Release LIB 2021.2.712 (12 Jul 2021)
Created by: Robby
Comments: 3
Category: SpreadProcessing
Type: Feature Request
0
Make it possible to change the series fill color.
Declined
Last Updated: 06 Jul 2021 09:46 by ADMIN

Importing XLSX file in Blazor Web Assembly for .NET 5.0 is very slow.

 

          <InputFile OnChange="@HandleFileSelected" />

 

async Task HandleFileSelected(InputFileChangeEventArgs e)

{

   var ms = new MemoryStream((int)e.File.Size);
        Telerik.Windows.Documents.Spreadsheet.FormatProviders.OpenXml.Xlsx.XlsxFormatProvider formatProvider = new Telerik.Windows.Documents.Spreadsheet.FormatProviders.OpenXml.Xlsx.XlsxFormatProvider();
        using (Stream ey = e.File.OpenReadStream(e.File.Size))
        {
            await ey.CopyToAsync(ms,(int)e.File.Size);
            ey.Close();
        }
        oWorkbook = formatProvider.Import(ms);

  }  

Completed
Last Updated: 21 Jul 2021 12:41 by ADMIN
Release R3 2021

When the column has cells that span several rows, the auto fit of column width is not working.

Workaround: If the document is being generated with the API, autofit the contents before merging the data.

Unplanned
Last Updated: 05 Aug 2021 16:47 by ADMIN

The files are not properly recognized when the base64 string representing the exported XLS file is converted using https://base64.guru/converter/decode/file.

If an XLS file produced by MS Excel is converted with the same tool, it is generated with .bin extension.

 
Unplanned
Last Updated: 09 Aug 2021 11:14 by ADMIN
Provide API allowing to import documents on background thread. The API should allow the passing of a CancellationToken in order to cancel the import at any time.
Unplanned
Last Updated: 23 Aug 2021 09:17 by ADMIN
The second axis of the chart is not displayed regardless of the position.
Duplicated
Last Updated: 14 Sep 2021 08:04 by ADMIN
Created by: Monique
Comments: 0
Category: SpreadProcessing
Type: Feature Request
0
Add support for Excel 5.0/95 Workbooks.
Completed
Last Updated: 19 Oct 2021 11:44 by ADMIN
Release R3 2021 SP1
Created by: Avrohom Yisroel
Comments: 1
Category: SpreadProcessing
Type: Bug Report
0
When exporting to PDF, the hidden sheets should not be included in the layout. Or, at least, there should be an option whether to skip them or not.
Completed
Last Updated: 12 Oct 2021 14:17 by ADMIN
Release R3 2021 SP1
Importing a document containing [hh]:mm number format causes an ArgumentException.
Completed
Last Updated: 12 Oct 2021 14:23 by ADMIN
Release R3 2021 SP1
Formulas referring to cells containing cell references are not recalculated if the imported document containing cached formula values.
Completed
Last Updated: 02 Nov 2021 07:54 by ADMIN
Release R3 2021 SP1
If there are cells in the column with wrapped content, containing text with more than one word, and other cells with smaller content, the auto-fitting does not respect the width of the wrapped cell and sets the column width to the width of the other smaller cells.
Completed
Last Updated: 22 Nov 2021 15:36 by ADMIN
Release R1 2022
An exception is thrown when importing a document containing custom number formats with date or time part and empty sections.
Completed
Last Updated: 07 Dec 2021 14:43 by ADMIN
Release R1 2022
Exception when rounding a decimal value in a formula with a lot of precision numbers
Unplanned
Last Updated: 23 Nov 2021 14:51 by ADMIN

The content of some rows which contain new lines can be clipped when a fixed-width column is wrapped.

This can be observed in the following images.

Before the export:

After the export:

Unplanned
Last Updated: 28 Feb 2022 12:53 by ADMIN
The formula when adding a number to date is not calculated correctly. 
Unplanned
Last Updated: 10 Dec 2021 09:18 by ADMIN

The vertical grid lines are not visible in a scatter chart. The grid lines are visible when opened in Excel.

 

Unplanned
Last Updated: 07 Nov 2024 11:51 by ADMIN
Formula evaluation causes an endless loop when importing a specific file
Completed
Last Updated: 16 Feb 2022 12:55 by ADMIN
Release R1 2022 SP1
If some notes exist below the inserted/removed cells, the notes need to be moved as well along with the rest of the cells. Currently, after insert/remove, the notes are still associated with the original cell index thus are in the wrong cells.
Unplanned
Last Updated: 08 Feb 2022 12:47 by ADMIN
Indirect function cannot get named range by name as string or cell value.