Unplanned
Last Updated: 06 Mar 2024 12:47 by Kevin
Currently, it is possible to specify the color for each cell explicitly, not the entire column
Unplanned
Last Updated: 26 Jan 2024 12:32 by ADMIN

Exception Message: "Stream does not support seeking."

I was trying to stream an XLSX document directly to a write-only stream when I noticed the XlsxWorkbookExporter implementation (or more precisely the custom ZipArchive implementation) requires the stream to be seekable.

Unplanned
Last Updated: 20 Oct 2023 09:43 by Francesco
Add support for importing files with absolute relationship target paths.
Unplanned
Last Updated: 20 Oct 2023 09:42 by Stefania
Created by: Stefania
Comments: 0
Category: SpreadStreamProcessing
Type: Feature Request
1
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
- Last Author
- Creation Date
- Category
- Manager
- Company
Completed
Last Updated: 06 Jul 2023 08:12 by ADMIN
Release R3 2021
Created by: Gil
Comments: 3
Category: SpreadStreamProcessing
Type: Feature Request
0
Some of the required properties are Orientation and Page size.
Duplicated
Last Updated: 05 May 2023 09:05 by ADMIN
Created by: Diego
Comments: 1
Category: SpreadStreamProcessing
Type: Feature Request
1
Please, implement the filtering feature for the RadSpreadStreamProcessing library.
Unplanned
Last Updated: 28 Apr 2023 06:16 by James

I'd like to have the following style property available in the SpreadStreamProcessing library:

TextRotation

Unplanned
Last Updated: 20 Mar 2023 14:32 by Rekha

SpreadProcessing has a method,  cellValue.GetValueAsString(format), which allows the user to apply excel format on a value and get the result. While in SpreadStreamProcessing one could get the format and the value, there is no way to get their result and this is very inconvenient when the values in question are dates.

Workaround:

foreach (ICellImporter cell in rowImporter.Cells)
{
    string value = cell.Value;
    var format = cell.Format.NumberFormat;

    var cellValueFormat = new CellValueFormat(format);
   
    ICellValue cellValue;
    CellValueFormat valueFormat;

    CellValueFactory.Create(
        value,
        worksheet,
        new CellIndex(0, 0),
        cellValueFormat,
        out cellValue,
        out valueFormat);

    var formattedValue = cellValue.GetResultValueAsString(cellValueFormat);
}
Unplanned
Last Updated: 09 Mar 2023 08:06 by Satish
Created by: Satish
Comments: 0
Category: SpreadStreamProcessing
Type: Feature Request
1
Add support for hyperlinks export.
Unplanned
Last Updated: 24 Feb 2023 10:39 by son
Created by: son
Comments: 0
Category: SpreadStreamProcessing
Type: Feature Request
0
Add support for Rich Text.
Completed
Last Updated: 14 Feb 2023 11:20 by ADMIN
Release R1 2023 SP1
Provide API that allows retrieving of the cached formula value
Unplanned
Last Updated: 16 Dec 2022 13:14 by ADMIN

Respectfully request the ability to set the text orientation of a cell. This feature was added to the SpreadProcessing library and we'd like to see it added to  the SpreadStreamProcessing library.

I operate mostly within the streaming version of the spread-processing library, so I don't have an idea of how full-featured the implementation was in SpreadProcessing. My request for the streaming library is to be provided with similar functionality as that which is provided by Excel:

Thank you,

R. J. Lewis III

Unplanned
Last Updated: 13 Dec 2022 09:16 by Rik
API that allows you to get the styles and colors from the current theme.
Unplanned
Last Updated: 15 Nov 2022 12:19 by Mark
Created by: Mark
Comments: 0
Category: SpreadStreamProcessing
Type: Feature Request
6
Add support for CSV settings when exporting (delimiter, encoding). 
Unplanned
Last Updated: 01 Nov 2022 11:42 by William
Created by: William
Comments: 0
Category: SpreadStreamProcessing
Type: Feature Request
1
Allow users to define sorting.
Completed
Last Updated: 19 Sep 2022 13:17 by ADMIN
Release R3 2022
ADMIN
Created by: Anna
Comments: 2
Category: SpreadStreamProcessing
Type: Feature Request
40
In addition to the fast document generation, the SpreadStreamProcessing can be adapted to import documents significantly faster than SpreadProcessing.
Unplanned
Last Updated: 08 Sep 2022 12:53 by Denis
This attribute is needed to ensure the text values entered by users will appear in the same way as they inserted them. However, there are customers preferring to decrease the file size and skip this attribute. Expose a setting to allow them to achieve that.
Completed
Last Updated: 03 Aug 2021 14:27 by ADMIN
ADMIN
Created by: Nikolay Demirev
Comments: 1
Category: SpreadStreamProcessing
Type: Feature Request
7

			
Completed
Last Updated: 17 May 2021 08:29 by ADMIN
Release R2 2021
Provide a way to measure text on different platforms so the user can pass the cell value and SpreadCellFormat and get the size of the text in pixels. This way we will be able to implement auto-fit to width functionality (AutoFitWidth), at least for the .NET Framework implementation. It will be able to measure the width of all cells in a column and set the value as column width in pixels.
Unplanned
Last Updated: 26 Mar 2021 10:22 by ADMIN
Created by: Dmitry
Comments: 0
Category: SpreadStreamProcessing
Type: Feature Request
9
Such settings are: "Summary Rows Below Detail", "Summary Columns to Right of Detail" and "Automatic styles".
1 2 3