pdfmake.js中表的行宽

时间:2018-02-26 07:13:02

标签: javascript jquery json pdfmake

我正在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 ]
}

1 个答案:

答案 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;
    }
  }
]