Browse our Products

Aspose.Slides for .NET 16.11.0 Release Notes

KeySummaryCategory
SLIDESNET-37863AnimationEffect.Disappear is unavailable in Aspose.SlidesFeature
SLIDESNET-36785Setting color for InvertIfNegitive value for chart series dataFeature
SLIDESNET-37351Implement rendering for distributed text alignmentFeature
SLIDESNET-33381Not able to get linked VTF path in pptxBug
SLIDESNET-38083Incorrect PDF is generated for presentationBug
SLIDESNET-38039Exception on loading presentationBug
SLIDESNET-38038Exception on saving presentationBug
SLIDESNET-38021Presentation is corrupted after resavedBug
SLIDESNET-38019Incorrect hyperlink action type in .ppt fileBug
SLIDESNET-38018Exception on loading presentationBug
SLIDESNET-38017Ppt not converted to pdf correctlyBug
SLIDESNET-38015When PPTX is converted to PDF, the values in chart are missing.Bug
SLIDESNET-38009Image color changes after saving pptBug
SLIDESNET-37993Font substitution does not work for bullets and symbolsBug
SLIDESNET-37989Animation are changed after saving pptBug
SLIDESNET-37987Issue while removing header footerBug
SLIDESNET-37978Hyperlink tool tip difference in .ppt and .pptx filesBug
SLIDESNET-37970Convert stop after 21 slidesBug
SLIDESNET-37969Exception on loading presentationBug
SLIDESNET-37962Pptx not rendered correctly after converting to pngBug
SLIDESNET-37958Master slide name missingBug
SLIDESNET-37940Labels overlap in Y axisBug
SLIDESNET-37935Text is missing in box after converting pptx to pngBug
SLIDESNET-37933Text is missing in boxes after converting pptx to pngBug
SLIDESNET-37932Text missing when converting pptx to pngBug
SLIDESNET-37930Position of graph lines is not correct in output HTML or image fileBug
SLIDESNET-37912Black borders appearsBug
SLIDESNET-37898Text distribution lost after converting Pptx to pdfBug
SLIDESNET-37883Unable to plot more than 700 points in the chartBug
SLIDESNET-37864Pptx does not render correctlyBug
SLIDESNET-37833PPT not protected properlyBug
SLIDESNET-37690PlotArea overlaps text behind the chart.Bug
SLIDESNET-37683PDF notes are not rendering for ppt fileBug
SLIDESNET-37668Font Bold and Italic property are not working properlyBug
SLIDESNET-37584Memory leak in presentation loading and savingBug
SLIDESNET-37551Grayscale effect on image has disappeared after load and save a pptBug
SLIDESNET-37534Chart unable to plot on Primary X-Axis and Secondary Y-AxisBug
SLIDESNET-37283Charts failed to render in generated thumbnails in Windows 8Bug
SLIDESNET-37156Incorrect tiff generated from pptxBug
SLIDESNET-36993Incorrect Chart Titles in generated PDFBug
SLIDESNET-36982Line charts are changed after presentation load and saveBug
SLIDESNET-36958Chart legends incorrect rendered in pdfBug
SLIDESNET-36845Incorrect Portion format on pptBug
SLIDESNET-36619Chart axis are not showing properly in generated PDFBug
SLIDESNET-36208The text get changed when saving presentationBug
SLIDESNET-36165Gradient fill reversed after resaving presentation from PPT to PPTXBug
SLIDESNET-36141DateTimeInvalid Format exception thrown on saving presentationBug
SLIDESNET-36085Gradient is inverted on thumbnail and in PDF from ppt presentationBug
SLIDESNET-36077Improper rendering of presentation when exporting to SVGBug
SLIDESNET-35510Argument Exception thrown on accessing the presentationBug
SLIDESNET-35295Chart export disregards series number formattingBug
SLIDESNET-34999Presentation repair message on saving the presentation with cleared paragraphs from text frameBug
SLIDESNET-33382OleObjectFrame object representing VTF file reference contains empty strings in “LinkPathShort” and “LinkPathLong” properties.Bug

Public API Changes

InvertedSolidFillColor property has been added

IColorFormat InvertedSolidFillColor property has been added to ChartSeries class and to IChartSeries interface.

It allows to specify inverted solid color for series. To apply this color setting, set series FillType format to FillType.Solid.

Color inverColor = Color.Red;
Color seriesColor;
using (Presentation pres = new Presentation())
{
    IChart chart = p.Slides[0].Shapes.AddChart(ChartType.ClusteredColumn, 100, 100, 400, 300);
    IChartDataWorkbook workBook = chart.ChartData.ChartDataWorkbook;

    chart.ChartData.Series.Clear();
    chart.ChartData.Categories.Clear();

    // Adding new series
    chart.ChartData.Series.Add(workBook.GetCell(0, 0, 1, "Series 1"), chart.Type);

    // Adding new categories
    chart.ChartData.Categories.Add(workBook.GetCell(0, 1, 0, "Category 1"));
    chart.ChartData.Categories.Add(workBook.GetCell(0, 2, 0, "Category 2"));
    chart.ChartData.Categories.Add(workBook.GetCell(0, 3, 0, "Category 3"));

    // Take first chart series
    IChartSeries series = chart.ChartData.Series[0];

    // Now populating series data
    series.DataPoints.AddDataPointForBarSeries(workBook.GetCell(0, 1, 1, -20));
    series.DataPoints.AddDataPointForBarSeries(workBook.GetCell(0, 2, 1, 50));
    series.DataPoints.AddDataPointForBarSeries(workBook.GetCell(0, 3, 1, -30));
    seriesColor = series.GetAutomaticSeriesColor();
    series.InvertIfNegative = true;
    series.Format.Fill.FillType = FillType.Solid;
    series.Format.Fill.SolidFillColor.Color = seriesColor;
    series.InvertedSolidFillColor.Color = inverColor;

    pres.Save(outPath, SaveFormat.Pptx);
}
Aspose.Slides.Animation.BehaviorProperty.GetByType(Aspose.Slides.Animation.PropertyType)
Aspose.Slides.Animation.BehaviorPropertyCollection.Add(Aspose.Slides.Animation.PropertyType)
Aspose.Slides.Animation.BehaviorPropertyCollection.Contains(Aspose.Slides.Animation.PropertyType)
Aspose.Slides.Animation.BehaviorPropertyCollection.IndexOf(Aspose.Slides.Animation.PropertyType)
Aspose.Slides.Animation.BehaviorPropertyCollection.Insert(System.Int32,Aspose.Slides.Animation.PropertyType)
Aspose.Slides.Animation.BehaviorPropertyCollection.Remove(Aspose.Slides.Animation.PropertyType)

Obsolete enum Aspose.Slides.Animation.PropertyType has been deleted.