Browse our Products

Aspose.Cells for Android via Java 24.3 Release Notes

KeySummaryCategory
CELLSJAVA-45816Support jakarta.servlet for GridWeb javaNew Feature
CELLSJAVA-45758Support hightlighted sheet tabs in the output html for mobile devicesNew Feature
CELLSJAVA-45705Support json as data source of smart markerNew Feature
CELLSJAVA-45199Dialog box is not converted into output PDF properlyNew Feature
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-45755Show the first item of datetime group pivot fileld if the field contains blank itemEnhancement
CELLSJAVA-45828Reduce file size of generated EMF image while exporting sheet to EMF imageEnhancement
CELLSJAVA-45742Text inside shapes is not displayed when converting Excel worksheet to imagesBug
CELLSJAVA-45756Invalid text color inside the shape/textbox when saving an Excel file to HTMLBug
CELLSJAVA-45748CalculateFormula() does not calculate formula correctlyBug
CELLSJAVA-45777Generated xls file was corrupted when there is linked source for Chart’s DisplayUnitLabelBug
CELLSJAVA-45780Different incorrect results obtained after calling multiple formula calculationBug
CELLSJAVA-43795Histogram chart is not rendered properly in XLSX to HTML conversionBug
CELLSJAVA-45784Data labels through conditions are not effective when converting file to htmlBug
CELLSJAVA-45794Fail to edit cell value in the new created sheet in GridWeb javaBug
CELLSJAVA-45779The scaling is different between Aspose.Cells generated pdf and Excel generated pdfBug
CELLSJAVA-45771Extra columns in exported HTML output when Excel named range contains iconsBug
CELLSJAVA-45708Smart markers can’t get correct layout when setting line by line replacement to falseBug
CELLSJAVA-45772An Exception should be thrown when a pivot field group by quartersBug
CELLSJAVA-45786Invalid encoding occurs when loading sample fileBug
CELLSJAVA-45790Preview mode showing different valueBug
CELLSJAVA-45091Issue with rendering drawings and text for XLT file format in Excel to PDFBug
CELLSJAVA-45789CalculateForumula results “-”Bug
CELLSJAVA-45836Excel conditional format duplicate value setting format shows error after saving to HTMLBug
CELLSJAVA-45838Incorrect results obtained after calling formula calculationBug
CELLSJAVA-45825Value list validation does not show in GridWeb javaBug
CELLSJAVA-45820The incorrect size and resolution are obtained by exporting Sheet Print Area to EMF imageBug
CELLSJAVA-45829Page count is not right while rendering workbook with 1200 print quality setting to pdfBug
CELLSJAVA-45802Issue with formatting of some sheets when rendering to HTMLBug
CELLSJAVA-45819Issue with formatting in the worksheet(s) when rendering Excel to HTMLBug
CELLSJAVA-45831Cell content missing when rendering Excel to HTMLBug
CELLSJAVA-45840The program hangs when saving file to htmlBug
CELLSJAVA-45824Use Json object as smartmarker data sourceBug
CELLSJAVA-45835Get an incorrect original width of a hidden column in pixelsBug
CELLSJAVA-45833Chart X-Axis Labels are Vertical Instead of Diagonal when Converted to ImageBug
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-45793NullPointerException occurs when converting file to htmlException
CELLSJAVA-45792ArrayIndexOutOfBoundsException occurs when loading the sample fileException
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 Android via Java. If you have concerns about any change listed, please raise it on the Aspose.Cells support forum.

Adds TxtLoadOptions.MaxRowCount/MaxColumnCount properties

Supports to import data from csv with user specified limit of rows and columns. If the data set is larger than the limit, it will be split into multiple worksheets according to the limit.

Adds TxtLoadOptions.HeaderRowsCount/HeaderColumnsCount properties

Supports to import data from csv with user specified header rows and headers to duplicated them for every extended worksheets.

Adds HtmlSaveOptions.CssStyles property

Gets or sets the additional css styles for the formatter.

Adds PivotField.GroupBy(double,bool) methods

Group the number or datetime pivot field.

Adds PptxSaveOptions.ExportViewType and enum SlideViewType

Indicates whether converting Excel to PowerPoint as View or Printing.

Adds FileFormatType.Oxps enum.

OXPS (Open XML Paper Specification) format.

Adds ChartCalculateOptions class.

The class represents the options for calculating chart.

Adds Chart.Calculate(ChartCalculateOptions) method.

Calculates the custom position of plot area, axes if the position of them are auto assigned, with specified options.

Adds Cells.GetColumnWidthPixel(Int32, Boolean) method

Gets the original width of the hidden columns.

Adds ExportTableOptions.AllowDBNull property

Indicates whether the column allows null values.

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.