Unplanned
Last Updated: 01 Feb 2022 10:45 by ADMIN
Created by: Michael
Comments: 3
Category: Spreadsheet
Type: Feature Request
8

Hello,

we have an Excel export in our software that we solved via Telerik Spreadsheet.

An exported Excel Table can also contain images.

These pictures are inserted as shape objects.

The Placement Property is set to xlMove (xlPlacement Enum) in Excel.

If you now filter the data in Excel, the images remain and are not hidden.

We therefore need a way of being able to change this Placement Property to the Value xlMoveAndSize

It would be very desirable if this option were made available in Telerik Spreadsheet as our customers urgently need it.

Unplanned
Last Updated: 28 Aug 2020 05:07 by ADMIN
Created by: Dimitar
Comments: 0
Category: Spreadsheet
Type: Feature Request
1
 Implement the Page Break Preview functionality like in Excel
Unplanned
Last Updated: 26 Jun 2020 10:09 by ADMIN
Created by: Dimitar
Comments: 0
Category: Spreadsheet
Type: Feature Request
4
Implement support for ChartSheet 
Unplanned
Last Updated: 16 Apr 2020 16:40 by ADMIN
Created by: Paul
Comments: 0
Category: Spreadsheet
Type: Feature Request
2
Currently, caching formula results is not supported.
Unplanned
Last Updated: 12 Feb 2020 08:24 by ADMIN
Created by: Sudhanshu
Comments: 0
Category: Spreadsheet
Type: Feature Request
7
A sparkline is a tiny chart in a worksheet cell that provides a visual representation of data that is currently not supported.
Unplanned
Last Updated: 07 Feb 2020 08:54 by ADMIN
Created by: Fred
Comments: 0
Category: Spreadsheet
Type: Feature Request
1
Currently, there is an option to export the spreadsheet to PDF file and using RadPdfViewer`s WPF control ThumbnailFactory class to export the PDF document pages to images. Sample code may be seen at this public item: PdfProcessing: Export document pages to images.
Unplanned
Last Updated: 05 Feb 2020 12:03 by ADMIN
Currently, the CellPropertyChanged event gives information only about which property is changed and in which cell range. But you can not get information about the exact change if it is set value, or clear. Also, the CommandExecuted event does not give you information about the executed command. Is if Set command? Clear command or something else.
Unplanned
Last Updated: 11 Dec 2019 07:38 by ADMIN
Created by: n/a
Comments: 1
Category: Spreadsheet
Type: Feature Request
1

Hi,

I think it would be really cool to include a search bar in the filter window, as implemented in Excel (Please find attached a screenshot for demonstration). This is a very useful functionality, as there may be too many options to choose from is the filter is added to subject ID, which could result in thousands IDs.

Unplanned
Last Updated: 18 Nov 2019 11:03 by ADMIN
Created by: Petar
Comments: 0
Category: Spreadsheet
Type: Feature Request
1
Currently, this can be achieved partially by using the FlowDirection property but the result could be unexpected for right-to-left. 
Unplanned
Last Updated: 11 Nov 2019 12:57 by ADMIN
Right now this functionality is missing and the user is not able to scroll the viewer when the row header is selected and not the cell.
Unplanned
Last Updated: 19 Jun 2019 08:16 by ADMIN
Created by: Michal
Comments: 0
Category: Spreadsheet
Type: Feature Request
2
SUBSTITUTE  - replaces text in a given string by matching.
REPLACE - replaces characters specified by location in a given text string with another text string.
Unplanned
Last Updated: 06 Jun 2019 10:58 by ADMIN
Created by: Randy
Comments: 0
Category: Spreadsheet
Type: Feature Request
1
The PickCellRange dialog should allow using the formula selection to select cell ranges and convert them into text.
Unplanned
Last Updated: 05 Jun 2019 11:52 by ADMIN
Created by: Pascal
Comments: 0
Category: Spreadsheet
Type: Feature Request
3
This feature allows automatically to group ordered data in the table and calculate the subtotals of the values column in each group of similar items. The subtotals are included just after each grouped items.
Unplanned
Last Updated: 08 Mar 2019 07:43 by ADMIN
Created by: Petar
Comments: 0
Category: Spreadsheet
Type: Feature Request
1
When Esc key is pressed charts dialog should close.
Unplanned
Last Updated: 05 Nov 2018 11:27 by ADMIN
ADMIN
Created by: Martin
Comments: 0
Category: Spreadsheet
Type: Feature Request
1
RadSpreadsheet should respect negative time values as MS Excel does it.
Unplanned
Last Updated: 29 Oct 2018 14:30 by ADMIN
ADMIN
Created by: Martin
Comments: 0
Category: Spreadsheet
Type: Feature Request
1
Add an event that indicates when a hyperlink is clicked.
Unplanned
Last Updated: 29 Oct 2018 09:33 by ADMIN
ADMIN
Created by: Martin
Comments: 0
Category: Spreadsheet
Type: Feature Request
1
Returns a Range object that represents the current region. The current region is a range bounded by any combination of blank rows and blank columns. If we want to be consistent with MS Excel we should implement this property. It is useful for many operations of a region such as filtering(selecting one cell and executing the Filter command should apply it to the current region), sorting, selecting all and etc. This document will be useful: https://docs.microsoft.com/en-us/office/vba/api/excel.range.currentregion.
Unplanned
Last Updated: 21 Aug 2018 14:29 by ADMIN
The functionality would allow to zoom the print preview and scroll the resulting viewport.

A partial implementation of the zooming functionality can be found in the attached file to provide a starting point for a custom implementation.
Unplanned
Last Updated: 21 Aug 2018 14:11 by ADMIN
The PrintPreviewControl refreshes its preview content on change in the SheetPageSetup object. This method would allow on-demand update.

At the moment this can be achieved by changing something in the page setup and restoring it. 

bool printGridlines = this.spreadsheet.Workbook.ActiveWorksheet.WorksheetPageSetup.PrintOptions.PrintGridlines;
this.spreadsheet.Workbook.ActiveWorksheet.WorksheetPageSetup.PrintOptions.PrintGridlines = !printGridlines;
this.spreadsheet.Workbook.ActiveWorksheet.WorksheetPageSetup.PrintOptions.PrintGridlines = printGridlines;
Unplanned
Last Updated: 08 Aug 2018 14:24 by Buzz
In MS Excel, the users can choose between showing the original size of the page and fit it in the window. Expose a similar option in RadSpreadsheet as well.