xlsx-style包的文档是这样的:说明1、ws['!cols']: array of column properties objects. Column widths are actually stored in files in a normalized manner, measured in terms of the "Maximum Digit Width" (the largest width of the rendered digits 0-9, in pixels). When parsed, the column objects store the pixel width in the wpx field, character width in the wch field, and the maximum digit width in the MDW field.说明2、ws['!rowBreaks']: array of row break points, e.g. [16,32]ws['!colBreaks']: array of col break points, e.g. [8,16]比如我想设置第二列的宽度为100px,根据说明1的话我是这样写的(先设置第一列为一个空对象,然后设置第二列的宽度)ws['!cols'] = ([
{},
{
wpx: 100
}
])ps:我在想有没有什么办法可以不用设置第一列为空对象,直接设置第二列的宽度呢?(“说明2”不知道怎么用)同样设置某一行的高度也有此疑问。
1 回答
慕尼黑8549860
TA贡献1818条经验 获得超11个赞
在用xlsx-style包的时候,貌似没有ws['!rows']属性,也就是说不能设置行的高度。。。
看来还是要想办法获取xlsx包的专业版了。
- 1 回答
- 0 关注
- 5763 浏览
添加回答
举报
0/150
提交
取消