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").
Unplanned
Last Updated: 30 Mar 2020 07:04 by ADMIN
Created by: Rudá Cunha
Comments: 0
Category: SpreadProcessing
Type: Feature Request
2

Currently, this could be achieved by exporting the document to PDF and then by using RadPdfViewer's WPF control ThumbnailFactory class. Sample code may be seen at this forum post: http://www.telerik.com/forums/pdf-thumbnail-returns-transparent-images#jO33X-E8Cki_qLh_KsToWg Help article: WPF PdfViewer - Exporting Fixed Page to Image - Telerik UI for WPF

Note: Allow also exporting part of the sheet to an image (print area, or selected cells), allowing for crop to content of the image.

Update: As of R3 2022 RadPdfProcessing has a SkiaImageFormatProvider available only for .NET Standard, which can be used instead of ThumbnailFactory. The help article can be found here: PdfProcessing - Using SkiaImageFormatProvider - Telerik Document Processing
Unplanned
Last Updated: 25 Mar 2020 10:05 by ADMIN
Created by: Todd Bannar
Comments: 0
Category: SpreadProcessing
Type: Feature Request
0
Add an option to save or load a custom created DocumentTheme.
Unplanned
Last Updated: 25 Mar 2020 09:10 by ADMIN
Created by: Todd Bannar
Comments: 0
Category: SpreadProcessing
Type: Feature Request
0
Currently, this could be achieved this way:
string themeName = "Office";
ThemeFontScheme themeFontScheme = PredefinedThemeSchemes.FontSchemes.FirstOrDefault(x => x.Name == themeName);
ThemeColorScheme themeColors = PredefinedThemeSchemes.ColorSchemes.FirstOrDefault(x => x.Name == themeName);
DocumentTheme theme = new DocumentTheme(themeName, themeColors, themeFontScheme);
Unplanned
Last Updated: 16 Mar 2020 13:31 by ADMIN

Setting SetIsBold method to true on a CellSelection, resets the font size of those cells to 11 points.
See the generated file of the attached program.
Cells C1:F1 have font size 11 instead of expected 9.

 

PS: Is it really necessary to have a support plan to report bugs?

Unplanned
Last Updated: 20 Feb 2020 11:53 by ADMIN
The colors of the charts are determined by the theme in the default scenario. However, customers can apply any color to the series and the legend respectively. In such cases, RadSpreadProcessing doesn't import the custom colors and uses the ones defined by the theme.
Unplanned
Last Updated: 20 Feb 2020 11:40 by ADMIN
The columns of the sheet are split when exporting to PDF.
Declined
Last Updated: 05 Feb 2020 15:30 by ADMIN
Created by: Martin
Comments: 2
Category: SpreadProcessing
Type: Bug Report
0
Wrong measured column width when exporting to PDF after binaries version 2019.2.624.
Unplanned
Last Updated: 27 Dec 2019 06:38 by ADMIN
Created by: Dimitar
Comments: 2
Category: SpreadProcessing
Type: Feature Request
4
One should be able to set the axis titles in the code. The attached images show an example of the exported document opened in Excel. 
Completed
Last Updated: 13 Dec 2019 10:55 by ADMIN
Release R1 2020
ADMIN
Created by: Deyan
Comments: 1
Category: SpreadProcessing
Type: Feature Request
2
Add support for MID function. MID returns a specific number of characters from a text string, starting at the position you specify, based on the number of characters you specify.

MID(text, start_num, num_chars)

A list of the supported functions is available at http://docs.telerik.com/devtools/document-processing/libraries/radspreadprocessing/features/formulas/functions

This function can be implemented as a custom function. Check the following resources for more details on how to achieve that:

- http://docs.telerik.com/devtools/document-processing/libraries/radspreadprocessing/features/formulas/custom-functions
- https://github.com/telerik/xaml-sdk/tree/master/Spreadsheet/WPF/CustomFunctions
Unplanned
Last Updated: 26 Nov 2019 11:30 by ADMIN
Created by: Dimitar
Comments: 0
Category: SpreadProcessing
Type: Feature Request
4
Add support for the Data Labels in the chart (see attached).
Completed
Last Updated: 05 Nov 2019 14:58 by ADMIN
Release LIB 2019.3.1111 (11/11/2019)
The exception is thrown when importing a document that contains a not supported BuiltInNumberFormat.
Completed
Last Updated: 16 Oct 2019 12:50 by ADMIN
Release R3 2019 SP1
While importing the arguments of the data validation rule, the formula is treated as text and its separators are replaced with the list separator defined in the current culture. This leads to an invalid formula treated as a list of strings.