使用jspdf-autotable。如何创建一个表,该表的列与其他列相比具有垂直偏移?类似于本示例中的长度列:
我今天使用的表是使用下面的代码构建的,但是我不知道要执行垂直偏移。
doc.autoTable({
head: [['Name', 'Slack (m)', 'Length (m)']],
body: rows,
tableWidth: doc.internal.pageSize.getWidth() * 0.33,
startY: 161,
margin: {left: 400},
styles: {fontSize: 8, lineWidth: 1},
rowPageBreak: 'avoid',
didDrawPage: pageNumber
});