Browse our Products
Aspose.Cells for .NET 25.8 Release Notes
Key | Summary | Category |
---|---|---|
CELLSNET-54523 | Support for EXPAND formula | New Feature |
CELLSNET-58806 | Support COT/COTH function | New Feature |
CELLSNET-58809 | Support REDUCE function | New Feature |
CELLSNET-55776 | Support font Variation Selectors while converting to pdf | New Feature |
CELLSNET-58803 | Preserve freezed top rows when converting worksheet to HTML | New Feature |
CELLSGRIDJS-1765 | Support API to apply font setting in textbox control in client JS | New Feature |
CELLSGRIDJS-1508 | Support adding a batch insert row function in the menu and below the maximum row. | New Feature |
CELLSGRIDJS-1771 | Support for alignment options in number format. | New Feature |
CELLSGRIDJS-1772 | Support for border options in number format. | New Feature |
CELLSNET-58755 | Support “if” parameter of smart marker | Enhancement |
CELLSNET-58756 | Support Variables in formula smart marker | Enhancement |
CELLSGRIDJS-1806 | Support automatic text wrapping | Enhancement |
CELLSNET-58724 | Auto adjust width for textbox according its text | Bug |
CELLSNET-58741 | Shape has lost some text when converting excel to pdf | Bug |
CELLSNET-58774 | Excel crashes when opening the Excel file (generated by Aspose.Cells) containing free form shape | Bug |
CELLSNET-58274 | The row hidden status is incorrect after the filter operation in MemoryPreference mode | Bug |
CELLSNET-58413 | NullReferenceException occurred when using LightCellsDataProvider with XlsSaveOptions | Bug |
CELLSNET-58497 | Aspose.Cells is incorrectly determining formula spill range | Bug |
CELLSNET-58620 | Extra single quotes were added to the formula when saving xlsb to xlsm | Bug |
CELLSNET-58684 | Array formulas are not fully calculated | Bug |
CELLSNET-58758 | Change default behavior of calculating AND/OR function with string parameters | Bug |
CELLSNET-58760 | Table references with “@” was not calculated correctly | Bug |
CELLSNET-58761 | Excel hyperlinks break when copying rows | Bug |
CELLSNET-58775 | Calculated result of range for IFS function is incorrect | Bug |
CELLSNET-58781 | Lambda functions not calculating properly | Bug |
CELLSNET-58791 | XLSM to PDF: Formulas not converted correctly | Bug |
CELLSNET-58792 | Incorrect workbook (formula) calculation when EnableCalculationChain = true | Bug |
CELLSNET-58804 | The AbstractCalculationEngine paramters sometimes reference incorrect values | Bug |
CELLSNET-58719 | Incorrect formula processing for TOCOL and nested array multiplier with true of scan_by_column | Bug |
CELLSNET-58821 | SCAN function was not calculated correctly | Bug |
CELLSNET-58799 | DataLabels is not wrapped in TreeMap chart. | Bug |
CELLSNET-58826 | Chart labels are rendered incorrectly when converting to image | Bug |
CELLSNET-58850 | Image looks slightly different than in Excel after rendering | Bug |
CELLSNET-52349 | The characters specified in the Variation Selectors are garbled when rendering to PDF | Bug |
CELLSNET-53681 | Texts using IPAmj Mincho fonts show error when converting file to pdf | Bug |
CELLSNET-55590 | Issue with Kanji Character Conversion from XLSX to PDF | Bug |
CELLSNET-58372 | Text data displays garbled characters when converting file to pdf | Bug |
CELLSNET-58505 | Some chars are garbled in Excel to PDF conversion | Bug |
CELLSNET-58846 | Text is corrupted while converting to pdf with CJK edit language option | Bug |
CELLSNET-58687 | Unexpected reference after processing json smart martmarker. | Bug |
CELLSNET-58731 | Invalid vertical alignment of xlsb | Bug |
CELLSNET-58743 | Outline levels not copying correctly with multiple source ranges | Bug |
CELLSNET-58744 | Invalid ValidationAlertType string val | Bug |
CELLSNET-58749 | Invalid referred array formulas when table was removed | Bug |
CELLSNET-58753 | Duplicate named style when reading styles from xlsb | Bug |
CELLSNET-58848 | Pivot tables with filters and without rows and columns lose formatting upon being refreshed | Bug |
CELLSGRIDJS-1785 | Chart to image raise exception for the test file | Bug |
CELLSGRIDJS-1784 | Images do not appear after opening other pages and switching back to the worksheet in collaborative mode. | Bug |
CELLSGRIDJS-1787 | Unfreeze does not work as expected | Bug |
CELLSGRIDJS-1789 | Hide and unhide operations for rows and columns are not preserved in the downloaded file | Bug |
CELLSGRIDJS-1790 | Unfilter does not work as expected | Bug |
CELLSGRIDJS-1825 | Cell E1 displays duplicated text in the middle of the word wrap | Bug |
CELLSGRIDJS-1831 | Hidden rows are still visible when loading the file CopyTO.xlsx | Bug |
CELLSGRIDJS-1804 | Decimal numbers entered with commas as decimal separators are interpreted as dates. | Bug |
CELLSGRIDJS-1808 | Incorrect display of large percentage values with ‘pl’ locale | Bug |
CELLSGRIDJS-1814 | Cross-origin issues when downloading files. | Bug |
CELLSGRIDJS-1823 | Range format does not work as expected | Bug |
CELLSNET-58765 | Exception “Object reference not set to an instance of an object” when merging named styles of workbooks | Exception |
CELLSNET-58766 | Exception “Object reference not set to an instance of an object” when saving as ods | Exception |
CELLSNET-58772 | OverflowException(Arithmetic operation resulted in an overflow) occurs when opening xlsx file | Exception |
Public API and Backwards Incompatible Changes
The following is a list of any changes made to the public API such as added, renamed, removed or deprecated members as well as any non-backward compatible change made to Aspose.Cells for .NET. If you have concerns about any change listed, please raise it on the Aspose.Cells support forum.
Adds enum ShapePathPointValueType.
Specifies the value type of ShapePathPoint object.
Adds ShapePathPoint.Type property.
Specifies the value type (position coordinate or angle marker) of the current object.
Adds ShapePathPoint.XPixel/YPixel properties.
When the object is a position coordinate, get or set the x/y coordinate in pixels.
Adds ShapePathPoint.XAngle/YAngle properties.
When the object is an angle marker, get or set the first/second angle in degrees.
Obsoletes ShapePathPoint.X/Y property.
Please use ShapePathPoint.XPixel/YPixel or XAngle/YAngle instead in units of pixels/degrees accordingly.
Obsoletes ShapePathPointCollection.Add method.
Please use the MoveTo, LineTo, CubicBezierTo and ArcTo methods of ShapePath instead.
Obsoletes WorkbookDesigner.Process(Range,Boolean) method and WorkbookDesigner.LineByLine property.
Please use range smart marker instead.
In order to process all smart markers of a range before the version 25.8, the range must be named as _CellsSmartMarkers
and WorkbookDesigner.LineByLine
must be false.
For example: if we need to process all smart markers in the range A1:D4
, in the old versions, we have to name the range A1:D4
as _CellsSmartMarkers
and LineByLine
as false, then we can process them together; Starting from 25.8, we only need to set the first smart marker in the range as &=table.column1(range:A1:D4)
.
Adds WorkbookDesigner.SortDataSource property.
Indicates whether to sort data source. Only works for JSON data source now.
Adds WorkbookSettings.SmartTagOptions property.
Gets the default settings for smart tags.
Adds PasteOptions.KeepOldTables property.
Indicates whether to keep tables in the destination range.
Adds MarkdownLoadOptions class.
Represents the options for loading markdown document.
Adds enum ChartColorPaletteType.
Enumerates all Monochromatic Palettes used in Excel chart.
Adds method SeriesCollection.ChangeColors(ChartColorPaletteType type).
Sets Monochromatic Palette for chart series.