如何使用jsPDF-AutoTable从表格中删除水平线

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何使用jsPDF-AutoTable从表格中删除水平线相关的知识,希望对你有一定的参考价值。

我如何在不删除jsPDF-AutoTable中所有行的左边框的情况下删除底边框?] >>

This is the result of the report that I designed with jsPDF-AutoTable

I want to remove the horizontal line to make it like this image

[如何在不删除jsPDF-AutoTable中所有行的左边框的情况下删除底部边框,这是我使用jsPDF-AutoTable设计的报告的结果,我想删除......]

< [
谢谢,我想我已经找到了解决方法

她正在wellDrowCell事件中我用这个代码画了一条线,然后取了每个单元格的坐标]

doc.line(x1,y1,x2,y2)

  1. x1> data.cell.x

      y1> data.cell.y + data.row.height
    1. x2> data.cell.x
    2. y1> data.cell.y`
    3. willDrawCell: (data) => if (data.section == "body" && data.column.index != 0) doc.setDrawColor(41, 128, 186) doc.setLineWidth(.5); doc.line(data.cell.x, data.cell.y + data.row.height, data.cell.x, data.cell.y);
答案
谢谢,我想我已经找到了解决方法

以上是关于如何使用jsPDF-AutoTable从表格中删除水平线的主要内容,如果未能解决你的问题,请参考以下文章

如何从表格中删除单元格

如何从 HTML 表格中删除特定单元格?

如何从信用卡表格中删除动画?

如何从表格的下拉菜单中删除先前选择的选项?

如何从代码中删除表格

如何从 Google 表格的查询中删除“编辑权限”?