Spire.Presentation 7.3.1 enhances the conversion from PPTX to PDF
2022-03-15 08:11:35
We are glad to announce the release of Spire.Presentation 7.3.1. This version enhances the conversion from PPTX to PDF, and fixes some known issues such as the effect of animation effect was incorrect after adding it for a chart shape. More details are listed below. Here is a list of changes made in this release Category ID Description Bug SPIREPPT-861 Fixes the issue that the effect of animation effect was incorrect after adding it for a chart shape. Bug SPIREPPT-1828 Fixes the issue that the Arabic text displayed incorrectly after converting PPTX to PDF. Bug SPIREPPT-1838 Fixes the issue that…
Spire.Presentation 7.2.5 supports creating "Map" chart
2022-03-01 02:37:43
We are glad to announce the release of Spire.Presentation 7.2.5. This version supports creating "Map" chart and modifying the number format for chart source data. In addition, it fixes some known issues such as the converted PDF file content is not correct after modifying the shape text. More details are listed below. Here is a list of changes made in this release Category ID Description New feature SPIREPPT-1837 Supports creating "Map" chart. Presentation ppt = new Presentation(); IChart chart = ppt.Slides[0].Shapes.AppendChart(ChartType.Map, new RectangleF(50, 50, 450, 450), false); chart.ChartData[0, 1].Text = "series"; string[] countries = { "China", "Russia", "France", "Mexico", "United…
Spire.Presentation 7.1 supports creating new charts
2022-01-21 03:31:27
We are glad to announce the release of Spire.Presentation 7.1. This version supports creating "BoxAndWhisker" chart, "Funnel" chart. "Histogram" chart, "Pareto" chart, "SunBurst" chart, "TreeMap" chart, "WaterFall" chart. It also enhances the conversion from PowerPoint to PDF. In addition, it fixes some known issues such as the content was incorrect after saving shape to image. More details are listed below. Here is a list of changes made in this release Category ID Description New feature SPIREPPT-1163 Supports creating "BoxAndWhisker" chart. Presentation ppt = new Presentation(); IChart chart = ppt.Slides[0].Shapes.AppendChart(ChartType.BoxAndWhisker, new RectangleF(50, 50, 500, 400), false); string[] seriesLabel = { "Series…
Spire.Presentation 6.12.4 supports adding the setting to convert high quality images
2021-12-24 01:50:11
We are glad to announce the release of Spire.Presentation 6.12.4. This version supports .NET6.0, supports adding the setting to convert high quality images, and supports getting the type and color of slide background. It also enhences the conversion from PowerPoint to PDF, PowerPoint to image. In addition, it fixes some known issues such as the obtained display color of table cell text was incorrect. More details are listed below. Here is a list of changes made in this release Category ID Description New feature SPIREPPT-1699 Supports getting the type and color of slide background. ISlide sld = ppt.Slides[0] as ISlide;…
Spire.Presentation 6.11.4 supports getting the display color of the table cell border
2021-11-25 03:56:06
We are glad to announce the release of Spire.Presentation 6.11.4. This version supports getting the display color of the table cell border. In addition, it enhances the conversion from PowerPoint to images, PowerPoint to PDF, and also fixes the issue that the obtained font size of the text was incorrect. More details are listed below. Here is a list of changes made in this release Category ID Description New feature SPIREPPT-1744 Supports getting the display color of the table cell border. table[0, 0].BorderLeftDisplayColor; table[0, 0].BorderTopDisplayColor; table[0, 0].BorderRightDisplayColor; table[0, 0].BorderBottomDisplayColor; Bug SPIREPPT-1723 Fixes the issue that the image converted from PowerPoint…
Spire.Presentation 6.11.2 supports getting the fill color of table cells
2021-11-12 09:48:02
We are happy to announce the release of Spire.Presentation 6.11.2. This version supports getting the fill color of table cells as well as supports setting the data label range for charts. In addition, it enhances the conversion from PowerPoint to images and also fixes the issue occurred in the process of inserting clustered column charts. More details are listed as follows. Here is a list of changes made in this release Category ID Description New feature SPIREPPT-1687 Supports getting the fill color of table cells. table.TableRows[i][j].DisplayColor; New feature SPIREPPT-1701 Supports setting the data label range for charts. Presentation ppt =…
Spire.Presentation 6.10.2 supports getting the target slide of a hyperlink
2021-10-27 07:13:00
We are glad to announce the release of Spire.Presentation 6.10.2. This version supports getting the target slide of a hyperlink. In addition, it enhances the conversion from shape to image and fixes some known issues. More details are listed below. Here is a list of changes made in this release Category ID Description New feature SPIREPPT-1698 Supports getting the target slide of a hyperlink. Presentation ppt = new Presentation(); ppt.LoadFromFile(inputFile); IAutoShape shape = ppt.Slides[1].Shapes[0] as IAutoShape; if (shape.Click.ActionType == HyperlinkActionType.GotoSlide) { ISlide targetSlide = shape.Click.TargetSlide; Console.WriteLine("index = " + targetSlide.SlideNumber); } Bug SPIREPPT-1684 Fixes the issue that the OLE object…
Spire.Presentation 6.9.5 fixes some issues occurred in the process of getting objects
2021-09-30 02:28:00
We are glad to announce the release of Spire.Presentation 6.9.5. This version fixes the issues occurred in the process of getting the correct text color of the chart legend and the correct height of the table cells. More details are listed below. Here is a list of changes made in this release Category ID Description Bug SPIREPPT-1609 SPIREPPT-1692 Fixes the issue that the OLE icon was not displayed when opened with WPS. Bug SPIREPPT-1690 Fixes the issue that it failed to get the correct height of the table cells. Bug SPIREPPT-1691 Fixes the issue that the application threw the error…