如何使用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)
- x1> data.cell.x
- y1> data.cell.y + data.row.height
- x2> data.cell.x
- y1> data.cell.y`
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从表格中删除水平线的主要内容,如果未能解决你的问题,请参考以下文章