Unplanned
Last Updated: 14 Mar 2024 10:40 by Ye
Created by: Ye
Comments: 0
Category: SpreadProcessing
Type: Feature Request
0
Unplanned
Last Updated: 13 Mar 2024 09:09 by ADMIN
ADMIN
Created by: Deyan
Comments: 4
Category: SpreadProcessing
Type: Feature Request
49
Add support for creating Tables and applying tables styles (predefined ones or custom).
Unplanned
Last Updated: 06 Mar 2024 16:52 by Naveen
Created by: Naveen
Comments: 0
Category: SpreadProcessing
Type: Feature Request
0

XIRR function returns the internal rate of return for a schedule of cash flows that is not necessarily periodic. To calculate the internal rate of return for a series of periodic cash flows, use the IRR function.

https://support.microsoft.com/en-gb/office/xirr-function-de1242ec-6477-445b-b11b-a303ad9adc9d 

Unplanned
Last Updated: 29 Feb 2024 20:15 by Walter
Created by: Walter
Comments: 0
Category: SpreadProcessing
Type: Feature Request
0

The charts have a display blanks as property which is represented by the dispBlanksAs element. The absence of this element sometimes makes drastic difference in the way a chart might look. E.g. the following chart has a gap in its data and depending on what value dispBlanksAs has, it looks very different.

Unplanned
Last Updated: 26 Feb 2024 13:18 by Heiko
Created by: Heiko
Comments: 0
Category: SpreadProcessing
Type: Feature Request
0
Unplanned
Last Updated: 20 Feb 2024 16:05 by Hatef
ADMIN
Created by: Deyan
Comments: 12
Category: SpreadProcessing
Type: Feature Request
31
At this point, the formatting can be applied only to the whole cell content.
Unplanned
Last Updated: 13 Feb 2024 11:50 by G
XlsFormatProvider: Introduce support for Import/Export documents containing macros.
Duplicated
Last Updated: 12 Feb 2024 16:36 by ADMIN
Created by: Abhishek
Comments: 0
Category: SpreadProcessing
Type: Feature Request
0
Introduce support for evaluating macros.
Declined
Last Updated: 26 Jan 2024 12:10 by ADMIN

In WorksheetPageSetup, you can only get the PageSize, but not set it. The only way is through setting a PaperType.

 

This is because in Telerik.Windows.Documents.Spreadsheet.Model.Printing.SheetPageSetupBase, the only way to set the pageSize property is by setting a PaperType, then it uses PaperTypeConverter.ToSize(PaperType) to convert it to the pageSize. I cannot see any other way to set this to a custom size set by the user.

 

Please allow custom page sizing by adding a setter for the PageSize if possible. Thank you!

 


WorksheetPageSetup pageSetup = worksheet.WorksheetPageSetup;
Size pageSize = new Size(50, 80)
pageSetup.PageSize = pageSize; // produces cs0200
pageSetup.PageSize.Width = pageSize.Width; // produces cs1612
pageSetup.PageSize.Height = pageSize.Height; // produces cs1612

Unplanned
Last Updated: 28 Nov 2023 14:52 by ADMIN
Introduce support for Implicit Intersection Operator '@'.
Unplanned
Last Updated: 20 Oct 2023 08:26 by Michael
Created by: Michael
Comments: 0
Category: SpreadProcessing
Type: Feature Request
2

Implement a GoalSeek functionality.

 

Unplanned
Last Updated: 11 Sep 2023 11:01 by Darren
Created by: Darren
Comments: 0
Category: SpreadProcessing
Type: Feature Request
1
Introduce support for PDF export of charts.
Unplanned
Last Updated: 09 Aug 2023 06:57 by ADMIN
Created by: Brian
Comments: 2
Category: SpreadProcessing
Type: Feature Request
1
Add support for TEXT function. TEXT lets you change the way a number appears by applying formatting to it with format codes.

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/CustomFunctions
Unplanned
Last Updated: 09 Aug 2023 06:56 by ADMIN
Created by: Brian
Comments: 2
Category: SpreadProcessing
Type: Feature Request
1
Add support for NOW function. NOW returns the serial number of the current date and time. If the cell format was General before the function was entered, Excel changes the cell format so that it matches the date and time format of your regional settings.

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/CustomFunctions
Unplanned
Last Updated: 12 Jul 2023 10:07 by Chris
Handle import of documents with invalid elements in 'x:fonts'.
Completed
Last Updated: 05 Jul 2023 09:00 by ADMIN
Release R2 2023
Created by: Marcos Mataloni
Comments: 17
Category: SpreadProcessing
Type: Feature Request
19

Hello,

we would like to have the capability to create a chart in excel export using Telerik.Documents.Spreadsheet 

Marcos

Unplanned
Last Updated: 03 Jul 2023 08:54 by Mark
Created by: Mark
Comments: 0
Category: SpreadProcessing
Type: Feature Request
0
Introduce support for TMP images. Currently, the import throws a KeyNotFoundException.
Unplanned
Last Updated: 29 Jun 2023 14:05 by David
Auto-fit exported table to page.
Unplanned
Last Updated: 28 Jun 2023 13:30 by Bhavya
Created by: Bhavya
Comments: 0
Category: SpreadProcessing
Type: Feature Request
0
Implement import of PDF to Workbook, using PdfFormatProvider. This would require text recognition and table recognition.

This will allow the conversion of PDF documents to XLSX and CSV.
Unplanned
Last Updated: 21 Jun 2023 10:56 by ADMIN
In the styles part of the xlsx file there is a cellXfs collection which contains xf elements. Each xf element has a numFmtId attribute which has to refer to an entry in the numFmts collection. Some libraries produce files with numFmtId's which are not valid but Excel handles such situations. SpreadProcessing throws KeyNotFoundException on import.
1 2 3 4 5 6