Browse our Products

Aspose.Cells for Java 24.3 Release Notes

KeySummaryCategory
CELLSJAVA-45863Provide more timely response to terminate saving process when saving htmlNew Feature
CELLSJAVA-45869Support setting default folders when saving file to htmlNew Feature
CELLSJAVA-45876Text characters shift upwards when Excel file is converted to PDFBug
CELLSJAVA-45883Failed to apply formatting when adding multiple formatting conditionsBug
CELLSJAVA-42410The chart area, labels, legends, etc. is rendered incorrectly in the output PDF and PNGBug
CELLSJAVA-45860Worksheet.autoFitRows(true) - the page layout sometimes broken or inconsistentBug
CELLSJAVA-45866Some cell texts are too small and missing when converting sample file to htmlBug
CELLSJAVA-45868Some misaligned cells caused the borders to shift when converting file to HTMLBug
CELLSJAVA-45865The formula beside pivot page field in column L2 is being removed.Bug
CELLSJAVA-45845Chart.toImage returns “java.lang.Exception: Image format(TIFF) is not supported.” errorException

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.

Removes obsolete indexer Cells.get(int index).

Please use Cells.GetEnumerator() method to iterate all cells.

Removes obsolete method Cells.FindFormula(string formula, Cell previousCell).

Please use Cells.Find(object,Cell,FindOptions) method instead, with LookInType.OnlyFormulas and LookAtType.EntireContent.

Removes obsolete method Cells.FindFormulaContains(string formula, Cell previousCell).

Please use Cells.Find(object,Cell,FindOptions) method instead, with LookInType.OnlyFormulas and LookAtType.Contains.

Removes obsolete property Range.CellCount.

Please use Range.RowCount and Range.ColumnCount to get total cells count instead.

Removes obsolete property Row.Style.

Please use Row.GetStyle() method instead.

Removes obsolete property WorkbookSettings.ParsingFormulaOnOpen.

Please use LoadOptions.ParsingFormulaOnOpen property instead.

Removes obsolete properties of WorkbookSettings about formula.

Please use properties of FormulaSettings instead.

Removes obsolete property of FilterColumn.Visibledropdown.

Please use FilterColumn.IsDropdownVisible property instead.

Please use AbstractCalculationEngine and CalculationOptions.CustomEngine instead for:

CalculationOptions.CustomFunction
Workbook.CalculateFormula(bool, ICustomFunction)
Worksheet.CalculateFormula(bool, bool, ICustomFunction)
Cell.Calculate(bool, ICustomFunction)

Removes obsolete method Cells.getCell(int row, int column).

Please use Cells.get(int row, int column) instead.

Removes obsolete methods Cells.getRow(int rowIndex)/getColumn(int columnIndex).

Please use Cells.getRows().get(int rowIndex)/Cells.getColumns().get(int columnIndex) instead.

Removes obsolete methods Area.isVisible()/isAuto()/setAuto(bool).

Please use Area.Formatting property instead.

Removes obsolete methods Axis.isAutoCross()/setAutoCross()/isCrossAtMax()/setCrossAtMax(bool).

Please use Axis.CrossType property instead.

Removes obsolete properties about formula for WorkbookSettings.

ParsingFormulaOnOpen
PrecisionAsDisplayed
ReCalculateOnOpen
CreateCalcChain
ForceFullCalculate
Iteration
MaxIteration
MaxChange
CalcMode
CalculationId
CalcStackSize
RecalculateBeforeSave

Please use corresponding properties of FormulaSettings instead.

Removes obsolete property DataLabels.Separator and corresponding enum DataLablesSeparatorType.

Please use DataLabels.SeparatorType and corresponding enum DataLabelsSeparatorType instead.

Obsoleted OdsSaveOptions.IsStrictSchema11 property.

Use OdsSaveOptions.OdfStrictVersion property instead.

Adds OdsSaveOptions.OdfStrictVersion property.

The generated ods files complie with the strict of ODF.

Adds MergeEmptyTdType enum.

Represents the merge type for empty TD element when exporting file to html.

Adds HtmlSaveOptions.MergeEmptyTdType property.

The option to merge contiguous empty cells(empty td elements).

Obsoleted HtmlSaveOptions.MergeEmptyTdForcely property.

Use HtmlSaveOptions.MergeEmptyTdType property instead.

Adds TickLabelAlignmentType enum.

Represents the text alignment type for the tick labels on the axis.

Adds TickLabels.AlignmentType property.

Gets and sets how to align the tick labels of the axis.

Adds FileFormatType.Azw3, LoadFormat.Azw3 enum.

AZW3 format.

Adds PivotItem.IsMissing property.

Indicates whether this item does not exist in the data source of pivot table.