Spire.Presentation 8.7.0 supports PPTX 2016 and PPTX 2019 file formats

2023-07-03 09:41:41

We are pleased to announce the release of Spire.Presentation for .NET 8.7.0. This version supports PPTX 2016 and PPTX 2019 file formats. Besides, it also supports setting the "Distance from axis" in the horizontal coordinate of the chart. What's more, some known issues are fixed in this version, such as the issue that the generated files failed to open after splitting PPT files. More details are listed below.

Here is a list of changes made in this release

Category ID Description
New feature SPIREPPT-2244 Supports PPTX 2016 and PPTX 2019 file formats.
Spire.Presentation.FileFormat.Pptx2016
Spire.Presentation.FileFormat.Pptx2019
New feature SPIREPPT-2266 Supports setting the "Distance from axis" in the horizontal coordinate of the chart.
Presentation ppt = new Presentation();
IChart chart = ppt.Slides[0].Shapes.AppendChart(ChartType.ColumnClustered, new RectangleF(50, 50, 400, 400));

//Gets the PrimaryCategory axis
IChartAxis chartAxis = chart.PrimaryCategoryAxis;

//Set "Distance from axis"
chartAxis.LabelsDistance = 200;

//Save to file
ppt.SaveToFile(outputFile, FileFormat.Pptx2013);
Bug SPIREPPT-2279 Fixed the issue that the generated files failed to open after splitting PPT files.
Bug SPIREPPT-2280 Fixed the issue that there was an incorrect null pointer when loading PPT files.
Bug SPIREPPT-2285 Fixed the issue that there was an error when determining whether a bar graph was switching columns.
Click the link below to download Spire.Presentation for .NET 8.7.0:
More information of Spire.Presentation new release or hotfix: