将表格与pdfmake对齐

时间:2018-12-11 08:11:16

标签: jquery pdfmake

如何center对齐特定的colspan行。我正在将tableExport与pdfmake一起使用。

这是我在jquery中的代码

$('#example').tableExport({
    fileName: "example",
    type: 'pdf',
    pdfmake:
        {
            enabled: true,
            docDefinition: {
                pageOrientation: 'landscape', 
                defaultStyle: {
                    font: 'Roboto',     
                    fontSize: 8,
                    bold: true,
                    //alignment: 'left',
                }, content: [{
                    table: {
                        headerRows: 2,
                        widths: [125, "*", "*", "*", "*", "*", "*", "*", "*", "*", "*", "*", "*", "*", "*"],
                        alignment: 'center',
                        columns: [
                        {
                            alignment: 'center', // Optional, for body texts
                        }
                        ]
                    }
                }]
            }
        },
});

不起作用。这实际上是一个。我标记了只需要居中对齐的值 enter image description here

0 个答案:

没有答案