Unplanned
Last Updated: 13 Mar 2024 09:09 by ADMIN
ADMIN
Created by: Deyan
Comments: 4
Category: SpreadProcessing
Type: Feature Request
51
Add support for creating Tables and applying tables styles (predefined ones or custom).
Completed
Last Updated: 12 Jun 2023 13:49 by Magnum P.I.
Release R3 2022
ADMIN
Created by: Deyan
Comments: 19
Category: SpreadProcessing
Type: Feature Request
48
If a worksheet spans more than one page, you can print row and column headings or labels (also called print titles) on every page to ensure that the data is properly labeled.
Completed
Last Updated: 16 Sep 2020 12:44 by ADMIN
Release R3 2020
ADMIN
Created by: Deyan
Comments: 6
Category: SpreadProcessing
Type: Feature Request
41

			
Completed
Last Updated: 05 Jul 2022 06:15 by ADMIN
Release R2 2022
ADMIN
Created by: Deyan
Comments: 20
Category: SpreadProcessing
Type: Feature Request
32
Provide ability for working with comments in a spreadsheet document.

In Office 365 there are two types of comments:

  1. Comments/Notes
  2. Threaded Comments 

This item applies to Threaded Comments only.

For Notes, please follow: SpreadProcessing: Provide API for Insert / Delete Comments (Notes)

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: 29 Dec 2022 07:04 by ADMIN
ADMIN
Created by: Deyan
Comments: 12
Category: SpreadProcessing
Type: Feature Request
24
Allow to password-protect a workbook, so that it cannot be shown (read) without the password.
Completed
Last Updated: 20 Jan 2022 08:18 by ADMIN
Release R1 2022
ADMIN
Created by: Deyan
Comments: 6
Category: SpreadProcessing
Type: Feature Request
24
Add support for conditional formatting of cells - allow applying of rules used during visualization of cells to automatically apply formatting depending on their values.
Unplanned
Last Updated: 15 Mar 2023 14:12 by ADMIN
ADMIN
Created by: Deyan
Comments: 4
Category: SpreadProcessing
Type: Feature Request
23
Add support for pivot tables.
Completed
Last Updated: 24 Jun 2021 14:53 by Vili
Release R3 2021
ADMIN
Created by: Nikolay Demirev
Comments: 16
Category: SpreadProcessing
Type: Feature Request
22
Add support for preserving and exporting the macros in a macro-enabled workbook.

Macros are pieces of code written in Visual Basic for Applications (VBA) which are used to automate repetitive tasks in excel. The macros are part of the excel file. When a file contains a macro its extension becomes xlsm.

SpreadProcessing should be able to import and export xlsm files and edit the macros in them.
Completed
Last Updated: 17 May 2021 08:30 by ADMIN
Release R2 2021
Expose an easy way to create .xlsx documents from DataTable objects.
Completed
Last Updated: 17 Aug 2018 06:27 by Tim
ADMIN
Created by: Tanya
Comments: 7
Category: SpreadProcessing
Type: Feature Request
20
This will enable printing with the following printing options: 

- Fit Sheet on One Page

- Fit All Columns on One Page

- Fit All Rows on One Page

- Custom automatic scaling


A possible implementation of a similar behavior is to use the PageSize property of WorksheetPageSetup and subtract the corresponding margin values (from the Margins property) from the width to calculate how many columns are fitting in some particular page size with 100% scale factor. 

Available in R2 2018 Official Release version.
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

Completed
Last Updated: 27 Feb 2019 13:20 by ADMIN
ADMIN
Created by: Deyan
Comments: 9
Category: SpreadProcessing
Type: Feature Request
19
Add APIs for creating and manipulating Chart objects.
Unplanned
Last Updated: 06 Mar 2017 14:48 by ADMIN
ADMIN
Created by: Deyan
Comments: 2
Category: SpreadProcessing
Type: Feature Request
17
Add support for array formulas (CellFormulaType "array"). These formulas can accept as parameters and return results containing whole arrays (one- or two- dimensional) of data. In MS Excel, such formulas are inserted with CTRL + SHIFT + Enter, and visualized enclosed with curly brackets ('{' and '}'). 
Unplanned
Last Updated: 11 Feb 2019 10:30 by ADMIN
With the current implementation, references like in the following expression cannot be evaluated and are treated as strings:
=SUM('C:\Users\Your user name\Desktop\[Workbook_1.xlsx]Sheet1'!A1:B2)
Unplanned
Last Updated: 21 Sep 2017 08:33 by ADMIN
Add API to get the list of ranges to which a defined name refers.

Example:
List<CellRange> ranges = workbook.Names["definedName"].Ranges;
CellSelection selection = worksheet.Cells[ranges];

The cell range referred by the defined name could be accessed using code similar to the following one:
foreach (var name in workbook.Names)
{
    if (name.Name == givenName)
    {
        string[] v = name.RefersTo.Split("!".ToCharArray());

        foreach (Worksheet sheet in workbook.Sheets)
        {
            if (sheet.Name.ToUpper() == v[0].Replace("=", String.Empty).ToUpper())
            {
                string rangeName = v[1];
                string firstIndexName = rangeName.Split(":".ToCharArray())[0];

                int rowIndex;
                int columnIndex;
                bool isRowAbsolute;
                bool isColumnAbsolute;
                bool nameRefersToIndex = NameConverter.TryConvertCellNameToIndex(firstIndexName, out isRowAbsolute, out rowIndex, out isColumnAbsolute, out columnIndex);

                if (nameRefersToIndex)
                {
                    sheet.Cells[rowIndex, columnIndex].SetValue(givenValue);
                }
            }
        }
    }
}

Unplanned
Last Updated: 15 Nov 2016 12:02 by ADMIN
ADMIN
Created by: Tanya
Comments: 2
Category: SpreadProcessing
Type: Feature Request
13
Allow the customers to work with Shape objects.
Completed
Last Updated: 20 Nov 2020 09:37 by ADMIN
Release R1 2021
ADMIN
Created by: Deyan
Comments: 1
Category: SpreadProcessing
Type: Feature Request
13
Add API for setting custom document properties (metadata). Such are visualized by the common editors, e.g. in MS Excel in the File menu.

Example properties that can be set through the document properties are:

- Title
- Subject
- Author
- Keywords
- Comments
- Last Author
- Creation Date
- Category
- Manager
- Company
Completed
Last Updated: 16 Dec 2022 12:49 by R. J.
Release R3 2020
ADMIN
Created by: Deyan
Comments: 11
Category: SpreadProcessing
Type: Feature Request
12
Implement functionality to rotate the content of a cell.
Unplanned
Last Updated: 28 Mar 2018 12:44 by ADMIN
ADMIN
Created by: Deyan
Comments: 6
Category: SpreadProcessing
Type: Feature Request
11
XLSB is binary format that should theoretically allow fast reading and writing to the file. 
1 2 3 4 5 6