jspdf table header overlapping issue on second page
See original GitHub issueHi
I have issue with overlapping issue in pdf table
var doc = new jsPDF('l', 'px', 'a4');
doc.setFont("helvetica");
doc.setFontSize(10);
doc.table(10, 5, generateData, headers, { autoSize: true,padding:10});
doc.save(fileName);
Please help me
Issue Analytics
- State:
- Created 4 years ago
- Comments:6
Top Results From Across the Web
jsPDF Big table, headers overlap in second page
The result is a PDF with the image at the top and the table next. The problem comes when it enters the second...
Read more >jspdf table header overlapping issue on second page #2519
Hi I have issue with overlapping issue in pdf table var doc = new jsPDF('l', 'px', 'a4'); doc.setFont("helvetica"); doc.
Read more >Solution for overlapping content when generating PDFs with ...
The issue is that if the content runs onto the next page, the table headers (<thead>) and footers (<tfoot>) are repeating and overlapping...
Read more >[Html2PdfConverter] Overlapping column header and content ...
Hi All,. if on subsequent pages, like page 2, 3 etc. the heading of a grid is duplicated to the next page, and...
Read more >How to Convert HTML Tables into Beautiful PDFs
We get to keep our nice table styles. The table column headers and table footer are repeated on every page. The table rows...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
After save line try to adjust the margins like below
pdf.save(reportName); }, { top: 32, bottom: 10, left: 10, width: 200 } );
Not that I know of. Seems like a bug to me. @iljayas could you investigate why this happens?