Aspose.Cells for PHP via Java 22.3 Release Notes

KeySummaryCategory
CELLSJAVA-44369shape height is not correctBug
CELLSJAVA-44366Copying the sheet content to a new sheet page and save it as html causes the style of the Excel math formula abnormalBug
CELLSJAVA-44408Percentage format of Cell is lost when we are expanding those 2 rows that we have changedBug
CELLSJAVA-44341Cell width is not correct in the output DOCX in Excel to DOCX conversionBug
CELLSJAVA-44383Conditional formatting stopped working after adding custom propertiesBug
CELLSJAVA-44370Excel file gets corrupt when opened and saved with Aspose.CellsBug
CELLSJAVA-44344Issue with horizontal copying of ranges in the output XLSXBug
CELLSJAVA-44363row header height doesnot match row content in the file with freezepaneBug
CELLSJAVA-44349image/shape shall be kept after server restart for GridWebBug
CELLSJAVA-44367The color of the column chart turns white when converting to htmlBug
CELLSJAVA-44328Some data labels of Excel graphs are lost when saving Excel file as HTMLBug
CELLSJAVA-44193The angle of category axis items in the graph is different in Excel to PDF conversionBug
CELLSJAVA-44314Wrong chart category axis labels in Chart to image renderingBug
CELLSJAVA-44332Cell link underline can’t remove when convert xlsx to htmlBug
CELLSJAVA-44323Exception while adding signature lineException
CELLSJAVA-44361CellsException raised while converting xlsx to htmlException

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.

Changes the default value of HtmlSaveOptions.ExcludeUnusedStyles.

When saving html files, for old versions sometimes we remove the unused styles automatically when there are many style objects in the pool, no matter what’s the value of this property. For the generated html files, excluding unused styles can make the file size smaller without affecting the visual effects. So from this version we make the default value of this property as true to make it consistent with the saving behavior. If user needs to keep all styles in the workbook for the generated html(such as the scenario that user needs to restore the workbook from the generated html later), please set this property as false while saving html.

Adds Cell.GetLeafs(bool recursive) method.

Support user to get all leafs of one cell recursively.

Adds Range.SetInsideBorders(BorderType, CellBorderType, CellsColor) method.

Support to set inside borders for the range.

Adds SaveFormat.Ots,SaveFormat.Xlt and LoadFormat.Ots enum.

Enhancement for loading and saving ots and xlt files.

Adds FormulaSettings class.

Separate all formula-related settings from WorkbookSettings and group them as FormulaSettings.

Adds WorkbookSettings.FormulaSettings property.

Gets the grouped settings for formulas.

Adds PivotItem.IsHideDetail property.

Gets and Sets whether the pivot item hides detail.

Obsoletes WorkbookSettings.ReCalculateOnOpen property.

Please use WorkbookSettings.FormulaSettings.CalculateOnOpen instead.

Obsoletes WorkbookSettings.RecalculateBeforeSave property.

Please use WorkbookSettings.FormulaSettings.CalculateOnSave instead.

Obsoletes WorkbookSettings.ForceFullCalculate property.

Please use WorkbookSettings.FormulaSettings.ForceFullCalculation instead.

Obsoletes WorkbookSettings.PrecisionAsDisplayed property.

Please use WorkbookSettings.FormulaSettings.PrecisionAsDisplayed instead.

Obsoletes WorkbookSettings.CalcMode property.

Please use WorkbookSettings.FormulaSettings.CalculationMode instead.

Obsoletes WorkbookSettings.Iteration property.

Please use WorkbookSettings.FormulaSettings.EnableIterativeCalculation instead.

Obsoletes WorkbookSettings.MaxIteration property.

Please use WorkbookSettings.FormulaSettings.MaxIteration instead.

Obsoletes WorkbookSettings.MaxChange property.

Please use WorkbookSettings.FormulaSettings.MaxChange instead.

Obsoletes WorkbookSettings.CalculationId property.

Please use WorkbookSettings.FormulaSettings.CalculationId instead.

Obsoletes WorkbookSettings.CreateCalcChain property.

Please use WorkbookSettings.FormulaSettings.EnableCalculationChain instead.

Obsoletes WorkbookSettings.CalcStackSize property.

Please use CalculationOptions with the specified stack size instead when calculating formulas.