如何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
}
]
}
}]
}
},
});