我正在pdfmake.js
库上创建pdf。我需要一些帮助来改变表格和单元格的线宽。
我的表格对象是
{
table: {
body: [
[
{
text: gHorse.anglesCount,
background: bgfcolor,
color: fcolor,
border: [ true, true, true, true ],
fillColor: ffcolor,
alignment: "center",
"fontSize": 6
}
]
]
},
margin: [ -20, 0, 0, 0 ]
}
答案 0 :(得分:1)
如果您的问题是Change
行的宽度,我的回答是:
content: [
layout: {
hLineWidth: function(i, node) {
return (i === 0 || i === node.table.body.length) ? 0.1 : 0.1;
},
vLineWidth: function(i, node) {
return (i === 0 || i === node.table.widths.length) ? 0.1 : 0.1;
}
}
]