Aspose.Slides for .NET 22.1 Release Notes

KeySummaryCategoryRelated Documentation
SLIDESNET-42964Incorrect word breaks for text frames after export or rasterizationEnhancementhttps://docs.aspose.com/slides/net/convert-slide/
SLIDESNET-42856Custom table style is lost after cloning to another presentationEnhancementhttps://docs.aspose.com/slides/net/clone-slides/
SLIDESNET-42953After import from PDF saved presentation is corruptedBughttps://docs.aspose.com/slides/net/convert-powerpoint-to-pdf/
SLIDESNET-42945Bottom borders of merged cells are missed when converting slide to SVGBughttps://docs.aspose.com/slides/net/render-a-slide-as-an-svg-image/
SLIDESNET-42940NullReferenceException is thrown when saving PPT to PPTBughttps://docs.aspose.com/slides/net/save-presentation/
SLIDESNET-42921Axis labels are displayed with full text in slide’s thumbnailBughttps://docs.aspose.com/slides/net/powerpoint-charts/
SLIDESNET-42918ArgumentException is thrown when saving PPT to PPTBughttps://docs.aspose.com/slides/net/save-presentation/
SLIDESNET-42899PPTX to SVG: The custom font does not applyBughttps://docs.aspose.com/slides/net/render-a-slide-as-an-svg-image/
SLIDESNET-42897Text wrapping is incorrect in exported PDF and thumbnailBughttps://docs.aspose.com/slides/net/convert-powerpoint-to-pdf/
SLIDESNET-42896Hidden chart data labels are displayed in slide thumbnailBughttps://docs.aspose.com/slides/net/powerpoint-charts/
SLIDESNET-42890EMF image is not displayed when converting PPT to PDFBughttps://docs.aspose.com/slides/net/convert-powerpoint-to-pdf/
SLIDESNET-42882Custom font does not affect PPTX to SVG conversionBughttps://docs.aspose.com/slides/net/render-a-slide-as-an-svg-image/
SLIDESNET-42865Chart Axis Shows Text for all Nodes IncorrectlyBughttps://docs.aspose.com/slides/net/powerpoint-charts/
SLIDESNET-42848PPTX to JPG: Text reflows incorrectlyBughttps://docs.aspose.com/slides/net/convert-slide/
SLIDESNET-42837PPTX to PPT conversion fails with ?Parameter is not valid? errorBughttps://docs.aspose.com/slides/net/convert-ppt-to-pptx/
SLIDESNET-42827EMF image is not displayed when converting PPTX to SVGBughttps://docs.aspose.com/slides/net/render-a-slide-as-an-svg-image/
SLIDESNET-42822PPTX to PNG: Text with Cambria Math font is not displayed correctlyBughttps://docs.aspose.com/slides/net/powerpoint-math-equations/
SLIDESNET-42804Shapes with 3D styles improperly rendered in generated PDFBughttps://docs.aspose.com/slides/net/convert-powerpoint-to-pdf/
SLIDESNET-42791Saving PPT to PPT throws ArgumentExceptionBughttps://docs.aspose.com/slides/net/save-presentation/
SLIDESNET-42672Pie chart split position changed on loading and saving the presentationBughttps://docs.aspose.com/slides/net/powerpoint-charts/
SLIDESNET-426163D effects on charts are lost in generated PDFBug< https://docs.aspose.com/slides/net/convert-powerpoint-to-pdf/>
SLIDESNET-36611Table missed in Pdf generated from ODPBughttps://docs.aspose.com/slides/net/convert-powerpoint-to-pdf/

Public API Changes

None member have been added to TimeUnitType enumeration

A new None member have been added to TimeUnitType enumeration. This member indicates that no unit should be set for the appropriate unit scale.

using (Presentation pres = new Presentation())
{
    IChart chart = pres.Slides[0].Shapes.AddChart(ChartType.Area, 10, 10, 400, 300, true);
    chart.Axes.HorizontalAxis.MajorUnitScale = TimeUnitType.None;
    pres.Save("chart.pptx", SaveFormat.Pptx);
}