Spire.Doc for Java 13.11.2 supports creating combination charts in Word
2025-11-14 09:29:44
We're pleased to announce the release of Spire.Doc for Java 13.11.2. This version supports creating combination charts in Word, and also fixes some issues that occurred when converting Word to PDF, Markdown to Word, and loading, saving Word documents. More details are listed below. Here is a list of changes made in this release Category ID Description New feature SPIREDOC-10972 Added support for creating combination charts in Word documents. Document doc = new Document(); Paragraph paragraph = doc.addSection().addParagraph(); Chart chart = paragraph.appendChart(ChartType.Column, 450, 300).getChart(); chart.changeSeriesType("Series 3", ChartSeriesType.Line, true); System.out.println(chart.getSeries().get(2).getChartType()); doc.saveToFile("ComboChart.docx"); Bug SPIREDOC-11412 SPIREDOC-11607 Fixed the issue that incorrect revisions were…
Spire.Doc for Java 13.10.6 supports retrieving style change revisions
2025-10-28 09:50:42
We're pleased to announce the release of Spire.Doc for Java 13.10.6. This version supports retrieving style change revisions, accepting or rejecting partial revisions, and tracking revision records for styles. Meanwhile, some issues that occurred when converting Word to PDF, HTML to Word, loading and saving Word documents have also been successfully fixed. More details are listed below. Here is a list of changes made in this release Category ID Description New feature SPIREDOC-9691 SPIREDOC-8447 Added support for accepting or rejecting partial revisions. Document document = new Document(); document.loadFromFile(inputFile); RevisionInfoCollection revisionInfoCollection= document.getRevisionInfos(); for (int i = 0; i New feature SPIREDOC-10632…
Spire.Doc for Java 13.9.19 supports configuring images to be embedded in Base64 encoding when converting Word to Markdown
2025-09-28 06:08:32
We're pleased to announce the release of Spire.Doc for Java 13.9.19. This version introduces enhanced Markdown export options, allowing better control over image encoding, output paths, link modes, lists, equations, and table formatting when converting Word documents. Meanwhile, multiple issues related to document revision comparison, page retrieval, content formatting, and exceptions during file conversions have also been fixed. More details are listed below. Here is a list of changes made in this release Category ID Description New feature SPIREDOC-11484 Supports configuring images to be embedded in Base64 encoding when converting Word to Markdown. doc.getMarkdownExportOptions().setImagesAsBase64(true); New feature — Supports configuring the…
Spire.Doc for Java 13.8.7 enhances the conversion from Word to PDF and HTML to Word
2025-08-29 09:45:15
We're pleased to announce the release of Spire.Doc for Java 13.8.7. This version focuses on improving stability by fixing various issues, including Word-to-PDF conversion errors, revision tracking problems, and document loading exceptions. See the details below. Here is a list of changes made in this release Category ID Description Bug SPIREDOC-10205 Fixes the issue where the minus sign in formulas appeared as a square box when converting Word to PDF. Bug SPIREDOC-10730 Fixes the issue where updating TOC (Table of Contents) fields failed. Bug SPIREDOC-11196 Fixes the issue where certain characters became garbled when converting Word to PDF. Bug SPIREDOC-11372…
Spire.Doc for Java 13.7.6 supports the "Two Lines in One" function
2025-07-30 06:54:49
We’re pleased to announce the release of Spire.Doc for Java 13.7.6. The latest version supports the "Two Lines in One" function, which enhances the conversion from Word to PDF. Furthermore, some known bugs are fixed successfully in the new version, such as the issue where accepting revisions did not affect the content in content controls. More details are listed below. Here is a list of changes made in this release New feature SPIREDOC-11113 SPIREDOC-11320 SPIREDOC-11338 Supports the "Two Lines in One" function. Bug SPIREDOC-11276 Fixes the issue where accepting revisions did not affect the content in content controls. Bug SPIREDOC-11314…
Spire.Doc for Java 13.7.2 enhances the conversion from Word to PDF
2025-07-10 07:28:03
We're pleased to announce the release of Spire.Doc for Java 13.7.2. The latest version enhances the conversion from Word to PDF. Besides, some known bugs are fixed successfully in this version, such as the issue where MailMerge.executeWidthRegion(dataSource) incorrectly reads image paths from XML. More details are listed below. Here is a list of changes made in this release Category ID Description Bug SPIREDOC-11280 Fixes the issue where MailMerge.executeWidthRegion(dataSource) incorrectly reads image paths from XML. Bug SPIREDOC-11283 Fixes the issue that Word document comparison results were incorrect. Bug SPIREDOC-11296 Fixes the issue that the program threw the "java.lang.ClassCastException" when loading Word…
Spire.Doc for Java 13.6.2 supports reading and setting chart formats
2025-06-25 05:45:28
We’re pleased to announce the release of Spire.Doc for Java 13.6.2. This version introduces support for getting and setting various chart formats such as chart titles, data labels, coordinate axes, legends and data tables, as well as optimizations in table formatting and Word-to-PDF conversion performance - especially for large documents or complex layouts. In addition, many known issues have been successfully fixed, including TOC update failures, SVG conversion issues, and document comparison errors. More details are listed below. Here is a list of changes made in this release Category ID Description New feature - Supports getting and setting chart formats,…
Spire.Doc for Java 13.5.3 supports excluding table objects during document comparison
2025-05-23 03:55:37
We're pleased to announce the release of Spire.Doc for Java 13.5.3. This version supports excluding table objects during document comparison, and setting underline color. Meanwhile, some issues that occurred when converting Word to PDF, creating and reading TOCs of Word documents have also been successfully fixed. More details are listed below. Here is a list of changes made in this release Category ID Description New feature SPIREDOC-11111 Supports excluding table objects during document comparison. Compareoptions compareoptions = new Compareoptions(); compareoptions.setIgnoreTable(true); docunment.compare(docunment2, "Yang Merlin", compareoptions ); New feature SPIREDOC-10501 Supports setting underline color. textRange.getCharacterFormat().setUnderlineColor(Color.RED); Bug SPIREDOC-10310 Fixes the issue where the…