Unplanned
Last Updated: 04 Nov 2024 16:17 by ADMIN
ADMIN
Created by: Deyan
Comments: 8
Category: SpreadProcessing
Type: Feature Request
60
Add support for creating Tables and applying tables styles (predefined ones or custom).
In Development
Last Updated: 04 Nov 2024 13:05 by ADMIN
Export to image is blocked when Export method is used instead of ExportAsync.
Unplanned
Last Updated: 30 Oct 2024 15:45 by ADMIN
ADMIN
Created by: Deyan
Comments: 2
Category: WordsProcessing
Type: Feature Request
7
Implement page border property which could be applied over the whole document or over a specific page.
Unplanned
Last Updated: 30 Oct 2024 12:59 by Oliver
StackOverflowException is thrown when applying filter for SVG.
In Development
Last Updated: 30 Oct 2024 07:53 by ADMIN
Created by: Tao
Comments: 0
Category: PdfProcessing
Type: Feature Request
0

With the current implementation, the Trigger Events are skippet on import.

From the PDF Specification: An annotation, page object, or interactive form field may include an entry named AA that specifies an additional-actions dictionary that extends the set of events that can trigger the execution of an action.

In Development
Last Updated: 30 Oct 2024 07:53 by ADMIN
ADMIN
Created by: Polya
Comments: 4
Category: PdfProcessing
Type: Feature Request
38
Implement importing and exporting the javascript actions associated with push button fields so that they can be executed when the exported document is opened with Adobe Acrobat. Javascript actions are also used by text fields for text validation (for instance for date input).
In Development
Last Updated: 29 Oct 2024 13:30 by ADMIN
Add support for importing files with absolute relationship target paths.
In Development
Last Updated: 29 Oct 2024 13:28 by ADMIN
While parsing the Post table of a specific font file on export an exception is thrown: InvalidOperationException: 'Position is out of range.'
In Development
Last Updated: 29 Oct 2024 11:33 by ADMIN
Created by: M4
Comments: 0
Category: PdfProcessing
Type: Feature Request
1

Introduce API for setting Image opacity.

The attached Workaround demonstrates how to change the opacity of the image before inserting it into the document.

In Development
Last Updated: 29 Oct 2024 11:07 by ADMIN
The Form object does not inherit the graphics state of the page
In Development
Last Updated: 28 Oct 2024 15:30 by ADMIN
ADMIN
Created by: Deyan
Comments: 22
Category: PdfProcessing
Type: Feature Request
35
Add support for documents containing RTL (right-to-left) text.
Unplanned
Last Updated: 28 Oct 2024 13:41 by Abdulmannan
Created by: Abdulmannan
Comments: 0
Category: SpreadProcessing
Type: Feature Request
0
Unplanned
Last Updated: 28 Oct 2024 13:28 by Abdulmannan
Created by: Abdulmannan
Comments: 0
Category: SpreadProcessing
Type: Feature Request
0

Error bars in charts you create can help you see margins of error and standard deviations at a glance. They can be shown on all data points or data markers in a data series as a standard error amount, a percentage, or a standard deviation. You can set your own values to display the exact error amounts you want. 

https://support.microsoft.com/en-us/office/add-change-or-remove-error-bars-in-a-chart-e6d12c87-8533-4cd6-a3f5-864049a145f0 

Unplanned
Last Updated: 21 Oct 2024 14:22 by Tao

Currently, the chart is generated considering the format applied to the cells. Thus, when the decimal part is clipped, duplicated values may occur and the developer doesn't have the option to update it:

This is the code:

            Workbook workbook = new Workbook();
            Worksheet worksheet = workbook.Worksheets.Add();

            List<string> categories = new List<string> { "New", "In Progress", "Ready for Test", "Done", "Declined" };
            worksheet.Cells[0, 0].SetValue("New");
            worksheet.Cells[0, 1].SetValue(1);
            worksheet.Cells[0, 2].SetValue(2.5);
            worksheet.Cells[1, 0].SetValue("In Progress");
            worksheet.Cells[1, 1].SetValue(2.8);
            worksheet.Cells[1, 2].SetValue(0);
            worksheet.Cells[2, 0].SetValue("Ready for Test");
            worksheet.Cells[2, 1].SetValue(2);
            worksheet.Cells[2, 2].SetValue(1);
            worksheet.Cells[3, 0].SetValue("Done");
            worksheet.Cells[3, 1].SetValue(1.4);
            worksheet.Cells[3, 2].SetValue(0);
            worksheet.Cells[4, 0].SetValue("Declined");
            worksheet.Cells[4, 1].SetValue(3);
            worksheet.Cells[4, 2].SetValue(0);

            

            FloatingChartShape chartShape = new FloatingChartShape(worksheet, new CellIndex(5, 5), new CellRange(0, 0, 4, 2),ChartType.Column)
            {
                Width = 400,
                Height = 250
            };

            worksheet.Charts.Add(chartShape);

            CellSelection cellSelection = worksheet.Cells[new CellIndex(0, 1), new CellIndex(4, 2)];
            CellValueFormat specialFormat = new CellValueFormat("0");
            cellSelection.SetFormat(specialFormat);

            string outputFilePath = "SampleFile.xlsx";

            Telerik.Windows.Documents.Spreadsheet.FormatProviders.IWorkbookFormatProvider formatProvider = new Telerik.Windows.Documents.Spreadsheet.FormatProviders.OpenXml.Xlsx.XlsxFormatProvider();

            using (Stream output = new FileStream(outputFilePath, FileMode.Create))
            {
                formatProvider.Export(workbook, output);
            }
            Process.Start(new ProcessStartInfo() { FileName = outputFilePath, UseShellExecute = true });

The requires options are setting the major/minor units for the axis:

Unplanned
Last Updated: 21 Oct 2024 14:12 by ADMIN
Optical character recognition or optical character reader (OCR) is the electronic or mechanical conversion of images of typed, handwritten, or printed text into a machine-encoded text from a scanned document.
In Development
Last Updated: 21 Oct 2024 12:25 by ADMIN

At this point, the justify alignment is not supported. Provide the ability to export text with this setting.

This functionality is dependent on PdfProcessing: Provide API for setting the text alignment to Justify

Unplanned
Last Updated: 18 Oct 2024 14:45 by Jose
ArgumentNullException when exporting a specific document with SVG image to PDF.
Declined
Last Updated: 18 Oct 2024 08:25 by ADMIN
Created by: Martin
Comments: 0
Category: PdfProcessing
Type: Feature Request
0

Typically, it is the text to be displayed for the annotation or, if the annotation does not display text, an alternate description of the annotation’s contents in human-readable form.

This item will be closed as its subject is too broad. Please refer to the information below for the individual markup annotations.

As of now, the currently supported markup annotations are:

Text
Line
Highlight
Underline
Squiggly
StrikeOut
Stamp

The unsupported annotations and their respective feedback items are:

FreeText
Square
Circle
Polygon
PolyLine
Caret
Ink
FileAttachment
Sound

1 2 3 4 5 6