Browse our Products

Aspose.Cells for Android via Java 25.9 Release Notes

KeySummaryCategory
CELLSJAVA-46440Support changing theme colors for chart seriesNew Feature
CELLSJAVA-46485Support PHONETIC formulaNew Feature
CELLSJAVA-46478Support repeating worksheets when processing smart markersNew Feature
CELLSJAVA-46463Remove unnecessary redundant data when loading sample fileNew Feature
CELLSJAVA-46477Support Master-Detail smart markersNew Feature
CELLSJAVA-46470Support dynamic array formula for dynamic formulas in smart markerNew Feature
CELLSJAVA-46407Support ShiftType.NONE when calling Cells.insertCutCells methodEnhancement
CELLSJAVA-46476Reduce generated svg file size while converting to svg with font embeddedEnhancement
CELLSJAVA-46480Need to use new WorkbookDesigner(workbook) unnecessarily to make variables processing workEnhancement
CELLSJAVA-46481“if” parameter works only when used with variablesEnhancement
CELLSJAVA-45604The text box border line is not a multiple line, but a single lineBug
CELLSJAVA-46405Mini image/sparkline displayed incompletely in merged cells - Excel to HTML conversionBug
CELLSJAVA-46409Wrong retrieving of the isAlignmentApplied() flag on the custom styleBug
CELLSJAVA-46413The result file crashes due to macro exception information when converting xls to xlsxBug
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-46445Certain numeric values display with inconsistent height and some values appear as superscriptBug
CELLSJAVA-46471Image loss when adding svg image to excel fileBug
CELLSJAVA-46465Date format error when converting file to pdfBug
CELLSJAVA-46448Paging error when converting file to pdfBug
CELLSJAVA-46467Text display error occurred when outputting text with spaces to PDFBug
CELLSJAVA-46475The embedded “IPAmjMincho” font is not applied while converting to svgBug
CELLSJAVA-46486The generated pdf failed PDF/A-2b validation while converting to pdf with PDF/A-2bBug
CELLSJAVA-46472One extra row gets added above the smart marker.Bug
CELLSJAVA-46473The style of last column lost after processing smart markersBug
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 Android via Java. If you have concerns about any change listed, please raise it on the Aspose.Cells support forum.

Adds enum item MemorySetting.FileCache.

Specifies to use temporary file as cache for cells data model.

Adds WorkbookDesigner.ContainsVariables property.

Indicates whether this workbook contains “Variable” worksheet.

Adds Cells.IsDefaultColumnHidden property.

Indicates whether all columns are hidden by default.

Adds MarkdownSaveOptions.CalculateFormula property.

Indicates whether to calculate formulas before saving markdown file.

Adds ShapePath.WidthPixel property.

Gets the width of this path in unit of pixels.

Adds ShapePath.HeightPixel property.

Gets the height of this path in unit of pixels.

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.

Changes default date format for the Japan locale.

For default date format(built-in number 14 for the number formatting), old versions of Microsoft Exce use the pattern of “yyyy/MM/dd” to format date value. But in Office 365, Excel uses the pattern of “yyyy/M/d” instead. Since some users require the same result as in Office 365, starting from 25.9 we use “yyyy/M/d” to format date by default.

Adds FileFormatType.FlatOpc enum.

Represents Microsoft Flat Opc Document file format.

Adds OoxmlSaveOptions.AsFlatOpc, PptxSaveOptions.AsFlatOpc and DocxSaveOptions.AsFlatOpc properties.

Indicates whether to save as Flat Opc file.

Obsoletes WorkbookDesigner.ContainsVariables property and adds WorkbookDesigner.VariablesWorksheetName property.

Use WorkbookDesigner.VariablesWorksheetName property to set which worksheet contains Variables.

Adds SaveElementType enum and DocxSaveOptions.SaveElementType property.

Represents what should be saved to docx file.

Adds DocxSaveOptions.EmbedXlsxAsChartDataSource and PptxSaveOptions.EmbedXlsxAsChartDataSource properties.

Indicates whether to embed an xlsx file as data source of the chart.

Adds PptxSaveOptions.SaveAsEditableShapes property.

Indicates whether to save editable shapes or images to pptx.

Adds HtmlEmbeddedFontType enum and HtmlSaveOptions.EmbeddedFontType property.

Represents the embedded font type in html.

Adds MarkdownSaveOptions.ExportHyperlinkAsReference property.

Indicates whether to export hyperlink using reference definitions instead of inline format.

Adds MarkdownSaveOptions.AlignColumnPadding property.

Gets or sets the character used to pad cell content for aligning columns.