We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The default implication of rowspan is addMergedRegion and it's really magic.
However the method addMergedRegion is slow on large data because it need to check range at every loop, see detail at http://apache-poi.1045710.n5.nabble.com/Bug-60397-New-very-slow-Cell-Merge-for-SXSSFWorkbook-td5725704.html
give a choice on if use the unsafe merge would be more helpful.
public interface CellDefinition extends HasStyle { + CellDefinition colspanUnsafe(int span); + CellDefinition rowspanUnsafe(int span); }
The text was updated successfully, but these errors were encountered:
I'm sorry I haven't answered yet! It thought I've already had. I'll take a look as soon as possible.
Sorry, something went wrong.
No branches or pull requests
The default implication of rowspan is addMergedRegion and it's really magic.
However the method addMergedRegion is slow on large data because it need to check range at every loop, see detail at http://apache-poi.1045710.n5.nabble.com/Bug-60397-New-very-slow-Cell-Merge-for-SXSSFWorkbook-td5725704.html
give a choice on if use the unsafe merge would be more helpful.
The text was updated successfully, but these errors were encountered: