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
@test public void testHeight() { SimpleRowHeightStyleStrategy rowHeightStyleStrategy = new SimpleRowHeightStyleStrategy((short)150, (short)120); EasyExcel.write("C:\Users\Administrator\Desktop\test2.xlsx", DemoData.class). registerWriteHandler(rowHeightStyleStrategy) .sheet("测试").doWrite(data()); }
升级了2.1.0-beta2后,使用SimpleRowHeightStyleStrategy 设置表头的高度,但是并未生效,内容高度生效了
The text was updated successfully, but these errors were encountered:
这个是个bug,已经在2.1.0-beta3修复
Sorry, something went wrong.
got it
实测2.0.1的head高度设置有效,.registerWriteHandler()的顺序不对所以不生效
zhuangjiaju
No branches or pull requests
@test
public void testHeight() {
SimpleRowHeightStyleStrategy rowHeightStyleStrategy = new SimpleRowHeightStyleStrategy((short)150, (short)120);
EasyExcel.write("C:\Users\Administrator\Desktop\test2.xlsx", DemoData.class).
registerWriteHandler(rowHeightStyleStrategy)
.sheet("测试").doWrite(data());
}
升级了2.1.0-beta2后,使用SimpleRowHeightStyleStrategy 设置表头的高度,但是并未生效,内容高度生效了
The text was updated successfully, but these errors were encountered: