You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A big part of the performance is Apache POI. I improved it by an order of magnitude in POI 3.16, which should work with an unmodified Vaadin-Spreadsheet release (I see the POM still says 3.15). POI 3.17 has several important bug fixes, but is not binary compatible due to removed deprecated methods.
WRITE CELLS w/Styles: ~10 seconds
loop through hashMap:
Cell newCell = spreadsheet.createCell(row, col, cellValue);
newCell.setCellStyle(someStyle);
AUTO-FIT COLUMNS: ~6 seconds
for 14 columns
spreadsheet.autofitColumn(colNumber);
The text was updated successfully, but these errors were encountered: