Browse our Products

Aspose.Cells for Java 25.8 Release Notes

KeySummaryCategory
CELLSJAVA-46440Support changing theme colors for chart seriesNew Feature
CELLSJAVA-46429Difference in HTML outputBug
CELLSJAVA-46450Incorrect text line spacing after rendering Excel to PDFBug
CELLSJAVA-46451Fonts in text boxes that refer to cells are distortedBug
CELLSJAVA-46382TEXTSPLIT function was not spilled correctly when the text is multiple rows/columnsBug
CELLSJAVA-46449Aspose.Cells formula calculation engine results differ from Excel 365Bug
CELLSJAVA-46425The width of the line rendered with the circle diameter is smaller than the diameter of the circleBug
CELLSJAVA-46439The font used in Emf image is not Substituted after setting font Substitution while converting to pdfBug
CELLSJAVA-46428MHT to XLSX conversion issues: Duplicate Logo, Column Width, Formatting & BordersBug
CELLSJAVA-46433Image is lost when converting file to htmlBug
CELLSJAVA-46356Either the data rows are not output or are interleaved after processing smart markerBug
CELLSJAVA-46414Subtotal functionality does not work correctly in Smart MarkersBug
CELLSJAVA-46426Support grouped smart markers in different rows with Json data sourceBug
CELLSJAVA-46442Smart Marker row indexing issue for Table without header for index and column gap between index and dataBug
CELLSJAVA-46444copyColumn() does not paste into inserted columns when source contains merged headerBug
CELLSJAVA-46410“java.lang.StackOverflowError” on Cell.putValue(“string”) when inserting particular value and do formula calculationsException
CELLSJAVA-46432“java.lang.OutOfMemoryError: Java heap space” when upgrading Aspose cells from 25.1 to 25.6 - Investigation requiredException

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 Java. 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.