Spire.Doc 13.7.9 support creating combination charts
2025-07-18 06:20:49
We're pleased to announce the release of Spire.Doc 13.7.9. This version adds several new features, such as support for creating combination charts and setting image compression methods when converting Word to PDF. Besides, it also fixes an issue that header images were distorted during Doc to PDF conversion. More details are listed below. Here is a list of changes made in this release Category ID Description New feature SPIREDOC-9977SPIREDOC-10012 Supports creating combination charts. Document doc = new Document(); Paragraph paragraph = doc.AddSection().AddParagraph(); Chart chart = paragraph.AppendChart(ChartType.Column, 450, 300).Chart; //Modify 'Series 3' to a line chart and display it on the…
Spire.Doc 13.6.14 supports setting rounded corners on rectangle shapes
2025-06-30 09:39:20
We're pleased to announce the release of Spire.Doc 13.6.14. This version adds support for setting rounded corners on rectangle shapes, and retrieving move revisions. What’s more, it also fixes several known issues, such as the paragraph text content retrieved was incorrect. More details are listed below. Here is a list of changes made in this release Category ID Description New feature SPIREDOC-11102 Supports setting rounded corners on rectangle shapes. if (Cobj is ShapeObject) { ShapeObject shape = (ShapeObject)Cobj; if (shape.ShapeType == ShapeType.RoundRectangle) { double cornerRadius = shape.AdjustHandles.GetRoundRectangleCornerRadius(); shape.AdjustHandles.AdjustRoundRectangle(20); } } New feature SPIREDOC-11335 Supports retrieving move revisions. DifferRevisions differRevisions =…
Spire.Doc 13.5.11 enhances the conversion from Word to PDF
2025-05-29 06:25:47
We are delighted to announce the release of Spire.Doc 13.5.11. The latest version enhances the conversion from Word to PDF. Furthermore, some known bugs are fixed in the new version, such as the issue that the values of content controls couldn't be modified. More details are listed below. Here is a list of changes made in this release Category ID Description Bug SPIREDOC-10418 SPIREDOC-10762 Fixes the issue where inconsistent pagination occurred when converting Word to PDF. Bug SPIREDOC-11177 Fixes the issue that font embedding was incorrect when converting Word to PDF. Bug SPIREDOC-11220 Fixes the issue where the "Allow row…
Spire.Doc 13.4.4 enhances the conversion from Word to PDF
2025-04-23 04:03:53
We are delighted to announce the release of Spire.Doc 13.4.4. This version enhances the conversion from Word to PDF. Besides, a lot of known issues are fixed successfully in this version, such as the issue that Fixed the issue that TextBox could not be obtained after using Document.Clone(). More details are listed below. Here is a list of changes made in this release Category ID Description Bug SPIREDOC-10815 Fixes the issue that TextBox could not be obtained after using Document.Clone(). Bug SPIREDOC-10865 Fixes the issue that the program threw “System.ArgumentException” when comparing Word documents. Bug SPIREDOC-10985 Fixes the issue that…
Spire.Doc 13.3.7 enhances the conversion from MarkDown to Word
2025-03-19 01:56:42
We're pleased to announce the release of Spire.Doc 13.3.7. This version adds support for .NET 9.0 Framework, and also enhances the conversions from MarkDown to Word, Word to PDF/HTML stream. Moreover, it also fixes several known issues, such as the program threw an exception when loading Word documents. More details are listed below. Here is a list of changes made in this release Category ID Description Adjustment - Adds DLL for .NET 9.0 Framework and removes DLL for .NET 7.0 Framework. System.Drawing.Common >= 9.0.0 System.Security.Permissions >= 9.0.0 System.Text.Encoding.CodePages >= 9.0.0 System.Security.Cryptography.Pkcs >= 9.0.0 System.Security.Cryptography.Xml >= 9.0.0 HarfBuzzSharp >=8.3.0.1 Bug SPIREDOC-10409…
Spire.Doc 13.3.5 supports writing MHTML format files
2025-03-14 08:36:00
We are excited to announce the release of Spire.Doc 13.3.5. The latest version supports writing MHTML format files. Besides, there are several adjustments have been made in the new version, such as the waiting time for downloading images from a Uri. More details are listed below. Here is a list of changes made in this release Category Description New feature Supports writing MHTML format files. Adjustment Upgrade the version of HarfBuzzSharp and SkiaSharp on Net (net4.6, 4.8), NetCore, and NetStandard platforms. HarfBuzzSharp -> 8.3.0.1, SkiaSharp -> 3.116.1 Adjustment Optimized the waiting time for downloading images from a Uri. The Netstandard…
Spire.Doc 13.2.3 optimizes the time and resource consumption when converting Word to PDF
2025-02-19 03:12:50
We're pleased to announce the release of Spire.Doc 13.2.3. This version optimizes the time and resource consumption when converting Word to PDF, and also adds new interfaces for reading and writing chart titles, data labels, axis, legends, data tables and other chart attributes. More details are listed below. Here is a list of changes made in this release Category ID Description New feature - Adds new interfaces for reading and writing chart titles, chart data labels, chart axis, chart legends, chart data tables and other attributes. ChartTitle.Text property: Sets the chart title text. ChartDataLabel.ShowValue property: Sets whether the data label…
Spire.Doc 13.1.4 supports checking and modifying hyperlinks for images and shapes
2025-01-14 09:54:45
We are excited to announce the release of Spire.Doc 13.1.4. This version supports checking and modifying hyperlinks for images and shapes. Besides, some known issues are fixed successfully in this version, such as the issue that the obtained ListText of paragraphs was incorrect. More details are listed below. Here is a list of changes made in this release Category ID Description New feature SPIREDOC-10532SPIREDOC-11019 Support judging and modifying hyperlinks for images and shapes. foreach (Section section in doc.Sections) { foreach (Paragraph paragraph in section.Paragraphs) { foreach (DocumentObject documentObject in paragraph.ChildObjects) { if (documentObject is DocPicture) { DocPicture pic=documentObject as DocPicture;…