JSPDF在每个块的最后一行上以额外的间距打印文本。 我希望块中的所有文本具有相同的字母间距。 我该如何解决?
这是我的配置。
doc.autoTable(res.columns, res.data, {
addPageContent: pageContent,
startY: 40,
margin: {
top: 20,
bottom: 30
},
theme: 'plain',
bodyStyles: {
valign: 'top'
},
styles: {
overflow: 'linebreak'
},
columnStyles: {
0: {
columnWidth: 20
},
1: {
columnWidth: 'auto',
halign: 'left'
},
2: {
columnWidth: 20,
halign: 'left'
},
3: {
halign: 'left',
columnWidth: 20
},
4: {
columnWidth: 20
}
}
});