Unplanned
Last Updated: 08 Dec 2023 14:57 by Prabhu
 Implement text orientation when importing/exporting to/from HTML
Duplicated
Last Updated: 30 Nov 2023 10:29 by ADMIN

Hi,

We are using HTMLFormatProvider and PDFFormatProvider for converting HTML  string to PDF file.  The below issues are identified while converting PDF.

 

1. Text Foreground  and Background color is not working in pdf.

HTML:

<p><span style="color: rgb(216, 55, 98); background-color: rgb(28, 122, 144); font-size: 30px;">Test</span></p>

We get the same issue even though we added below code.

foreach (Run run in document.EnumerateChildrenOfType<Run>())
{
    if (!run.Properties.HighlightColor.HasLocalValue)
	{
		run.HighlightColor = run.Shading.BackgroundColor.LocalValue;
	}
}

Attached the PDF file 

2. Strikeout is not working in PDF

  Sample HTML:

<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
<p><span style="font-size: 24px;"><del>Delete Strike Through line in the paragraph</del></span></p>
</body>
</html>

attached the PDF file .

It would be appreciated , if you provide the solution for those issues

 

Regards,

Babu

 

 

Unplanned
Last Updated: 27 Sep 2023 05:34 by Trevor
Created by: Trevor
Comments: 0
Category: Telerik Document Processing
Type: Feature Request
0
The SUMPRODUCT function is currently not implemented.
Unplanned
Last Updated: 26 Sep 2023 12:15 by Sam
If a table has AutoFit layout type, but the preferred width of one of the cells is small, the cell does not expand during layout. The expected behavior would be that the cell expands to accommodate its contents, even if the preferred width is smaller.
Unplanned
Last Updated: 21 Sep 2023 08:36 by Avrohom Yisroel
Created by: Avrohom Yisroel
Comments: 0
Category: Telerik Document Processing
Type: Bug Report
0
The th tag should be imported with a heading style.
Completed
Last Updated: 19 Sep 2023 10:32 by ADMIN
Release R3 2023
If the same rule, which uses a formula, is applied on more than one range the result data validation is incorrect, because the formula is translated wrong. E.g. if a custom rule with a formula =IsNumber(A1) is applied on A1:C6 and F1:F6, the rule for cell A1 would be =IsNumber(F1) instead of IsNumber(A1)
Completed
Last Updated: 12 Sep 2023 11:26 by ADMIN
Release R3 2023

A NullReferenceException is thrown when copying a sheet containing a chart with Marker whose FIll is null.

There is a workaround which should be applied before copying the sheet:

foreach (FloatingChartShape chart in wsPureCompTemplate.Charts)
{
    foreach (SeriesGroup seriesGroup in chart.Chart.SeriesGroups)
    {
        foreach (SeriesBase series in seriesGroup.Series)
        {
            LineSeries lineSeries = series as LineSeries;
            if (lineSeries != null && lineSeries.Marker != null && lineSeries.Marker.Fill == null)
            {
                lineSeries.Marker.Fill = new NoFill();
            }

            ScatterSeries scatterSeries = series as ScatterSeries;
            if (scatterSeries != null && scatterSeries.Marker != null && scatterSeries.Marker.Fill == null)
            {
                scatterSeries.Marker.Fill = new NoFill();
            }
        }
    }
}

Completed
Last Updated: 07 Sep 2023 13:41 by ADMIN
Release R3 2023
The print title defined name can contain any type of formula or literal and the document will still be valid. However, SpreadProcessing expects a cell range reference and throws and exception if the name contains something different.
Completed
Last Updated: 10 Aug 2023 13:07 by ADMIN
Release R3 2023
Importing an XLS document containing _xlfn.SINGLE defined name causes an InvalidOperationException.
Completed
Last Updated: 10 Aug 2023 12:20 by ADMIN
Release R3 2023
Created by: Jaroslaw
Comments: 1
Category: Telerik Document Processing
Type: Bug Report
0
Values filled in forms inside a PDF document are missing when exporting the document to image using the SkiaImageFormatProvider.
Unplanned
Last Updated: 01 Aug 2023 09:43 by Oliver
Importing and exporting documents containing chats with legends placed over the chart causes the legends to be misplaced and with a wrong number of series.
Unplanned
Last Updated: 01 Aug 2023 09:39 by Oliver
If a document containing chats with multiple vertical axes is imported and exported, the vertical axes are misplaced and with wrong minimum and maximum values.
Unplanned
Last Updated: 01 Aug 2023 09:29 by Oliver
If a document containing chats with logarithmic axes is imported and exported, the logarithmic axes are converted to linear.
Unplanned
Last Updated: 31 Jul 2023 08:45 by Barbarajoy
Created by: Barbarajoy
Comments: 0
Category: Telerik Document Processing
Type: Bug Report
3
Importing large XLS documents is slow.
Completed
Last Updated: 21 Jul 2023 12:22 by ADMIN
Release R3 2023
Exporting a document containing workbook properties and protection leads to an invalid document.
Completed
Last Updated: 21 Jul 2023 11:07 by ADMIN
Release R3 2023
Importing documents containing many formulas referring to constants values is causing a memory leak.
Completed
Last Updated: 05 Jul 2023 11:55 by ADMIN
Release R2 2023 SP1
The NotBetween conditional formatting rule applies the format to all the cells, no matter if the rule is satisfied or not.
Completed
Last Updated: 26 Jun 2023 12:56 by ADMIN
Release R2 2023 SP1
Encrypting document with Interactive forms containing checkboxes exports the checkbox widget with invalid normal caption appearance and name value. After the document is visualized in Adobe Reader DC the exported checkboxes are displayed with different check mark symbol or none.
Declined
Last Updated: 07 Jun 2023 11:05 by ADMIN
Created by: Thomas
Comments: 1
Category: Telerik Document Processing
Type: Bug Report
0

Hello,

I'm using Telerik Documents Processing 2023.1.410

With WordsProcessing, if I add a table in a footer it will automatically add a space after the table

Here an example, my table is the same size as my image in background and I removed all margin of the section:

Here the code:


Footer footer = section.Footers.Add(HeaderFooterType.Default)
section.PageMargins = new Padding(0,96,96,0);
section.FooterBottomMargin = 0;

Table table = footer.Blocks.AddTable();
TableRow row = table.Rows.AddTableRow();
TableCell cell = row.Cells.AddTableCell();
Paragraph paragraph = cell.Blocks.AddParagraph();
paragraph.Inlines.AddRun("Something");

 

I didn't any properties to manage spaces around a Table like in Paragraph.

It can be reproduced without the image

Work around:

If I add a new paragraph at the end and remove all spaces of this paragraph then it works

Here the code added:


paragraph = footer.Blocks.AddParagraph();
paragraph.Spacing.SpacingAfter = 0;
paragraph.Spacing.SpacingBefore = 0;
paragraph.Spacing.LineSpacing = 0;

 

Regards,
Hervouet Thomas

Unplanned
Last Updated: 29 May 2023 08:29 by David
Created by: David
Comments: 0
Category: Telerik Document Processing
Type: Bug Report
0

Getting these Visual Studio warnings in using current Telerik.Maui and Telerik.Blazor in Build:

Detected package version outside of dependency constraint: Telerik.Documents.Spreadsheet.FormatProviders.Xls 2023.1.307 requires Telerik.Zip (= 2023.1.307) but version Telerik.Zip 2023.1.410 was resolved.

Detected package version outside of dependency constraint: Telerik.Documents.Spreadsheet.FormatProviders.OpenXml 2023.1.307 requires Telerik.Zip (= 2023.1.307) but version Telerik.Zip 2023.1.410 was resolved.

Detected package version outside of dependency constraint: Telerik.Documents.Flow.FormatProviders.Doc 2023.1.307 requires Telerik.Zip (= 2023.1.307) but version Telerik.Zip 2023.1.410 was resolved.

Detected package version outside of dependency constraint: Telerik.Documents.Fixed.FormatProviders.Image.Skia 2023.1.307 requires Telerik.Zip (= 2023.1.307) but version Telerik.Zip 2023.1.410 was resolved.

Detected package version outside of dependency constraint: Telerik.Documents.Fixed 2023.1.307 requires Telerik.Zip (= 2023.1.307) but version Telerik.Zip 2023.1.410 was resolved.

Detected package version outside of dependency constraint: Telerik.Documents.Core 2023.1.307 requires Telerik.Zip (= 2023.1.307) but version Telerik.Zip 2023.1.410 was resolved.

Detected package version outside of dependency constraint: Telerik.Documents.CMapUtils 2023.1.307 requires Telerik.Zip (= 2023.1.307) but version Telerik.Zip 2023.1.410 was resolved.

Please be sure similar warnings will not be generated in your upcoming June releases.

Thank you.


The project file references ONLY the two very latest Telerik Maui and Blazor Nuget packages, no other Telerik dlls, etc. It would seem the outdated references are internal to at least one of those nuget packages you furnish. I do not see that I have any means on my end to resolve them.


Here my only csproj Telerik references:

<PackageReference Include="Telerik.UI.for.Blazor" Version="4.2.0" />
<PackageReference Include="Telerik.UI.for.Maui" Version="5.1.0" />