如何使用AutoTable创建不规则表

问题描述 投票:0回答:1

使用jspdf-autotable。如何创建一个表,该表的列与其他列相比具有垂直偏移?类似于本示例中的长度列:

Irregular table

我今天使用的表是使用下面的代码构建的,但是我不知道要执行垂直偏移。

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
});
jspdf jspdf-autotable
1个回答
0
投票

我找不到任何方法来进行垂直偏移。不必使用autoTable创建表,我只需要在for循环中绘制很多框,这些框看起来像一张表。

enter image description here

© www.soinside.com 2019 - 2024. All rights reserved.