New Features of ZK Spreadsheet 3.5.0-RC
Hawk Chen
April 01, 2014
ZK Spreadsheet 3.5.0 RC
New Features / Enhancements
Model Performance Enhancement
In this new version, we introduce a brand new model implementation. This enhancement doesn't change the way you use the Spreadsheet's public API mostly, but reduces Spreadsheet's memory consumption.
According to our tests which were done with a model operation of 500 rows and each row containing 10 numbers and 3 formulas, memory consumption was reduced to 1/3 of 3.0 under Java 1.6 and 1/6 under Java 1.7. These figures reflect big improvements with lower memory consumption saving you more money not only in an enterprise environment.
Row/Column Style
In previous versions, when you apply a style on the entire row, Spreadsheet will create one style object for each visible cell of that row. Row / column style now create only one style object for the entire row (or column) which saves lots of memory.
Support Chart and Picture Operations for XLS Format
In previous versions, users are not able to move or delete charts and pictures because ZK Spreadsheet's old model for XLS files doesn't support it. However, with the new model now that it has no difference in design design between XLS and XLSX, it now supports chart and picture operations for XLS files. Notice that this version still does not support exporting charts and pictures to XLS format but you can export them to a XLSX format file.
Upgrade Notes
Removed APIs
Book.getPoiBook()
: you can't get any poi model object from this version, but you can get internal book model bygetInternalBook()
.Sheet.getPoiSheet()
: get the internal sheet bygetInternalSheet()
ChartData getPoiChartData()
: get the internal chart data bygetInternalChartData()
Changed APIs
SheetOperationUtil.addChart()
: It will add a chart directly based on the selected data in the range. No need to pass a chart data object.CellSelectionType
is moved fromorg.zkoss.zss.ui.event
toorg.zkoss.zss.ui
Deprecated APIs
Range.SyncLevel
andRange.setSyncLevel()
.Book.getSync()
: we use a newReadWriteSync
, you can get the lock bygetLock()
CellStyle.getBackgroundColor()
: usegetFillColor()
EditableCellStyle.setBackgroundColor()
: usesetFillColor()
Exporter.export(Sheet sheet, OutputStream fos)
andexport(Sheet sheet,AreaRef selection,OutputStream fos)
: Use those subclasses oforg.zkoss.zss.range.SExporterFactory
. For example, to export an Excel XLSX format file, you can usenew ExcelExportFactory(Type.XLSX).createExporter().export(SBook book, File file)
Comments
Copyright © Potix Corporation. This article is licensed under GNU Free Documentation License. |