xlsx-style包的文檔是這樣的:說(shuō)明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.說(shuō)明2、ws['!rowBreaks']: array of row break points, e.g. [16,32]ws['!colBreaks']: array of col break points, e.g. [8,16]比如我想設(shè)置第二列的寬度為100px,根據(jù)說(shuō)明1的話我是這樣寫(xiě)的(先設(shè)置第一列為一個(gè)空對(duì)象,然后設(shè)置第二列的寬度)ws['!cols'] = ([
{},
{
wpx: 100
}
])ps:我在想有沒(méi)有什么辦法可以不用設(shè)置第一列為空對(duì)象,直接設(shè)置第二列的寬度呢?(“說(shuō)明2”不知道怎么用)同樣設(shè)置某一行的高度也有此疑問(wèn)。
1 回答

慕尼黑8549860
TA貢獻(xiàn)1818條經(jīng)驗(yàn) 獲得超11個(gè)贊
在用xlsx-style包的時(shí)候,貌似沒(méi)有ws['!rows']屬性,也就是說(shuō)不能設(shè)置行的高度。。。
看來(lái)還是要想辦法獲取xlsx包的專業(yè)版了。
- 1 回答
- 0 關(guān)注
- 5795 瀏覽
添加回答
舉報(bào)
0/150
提交
取消