JsPDFを使用してPDFを生成するための列幅を設定するために、過去2日間に打たれました。
私はhtmlテーブルからjsPDF libを使用してpdfを生成できますですが、列が重なるという問題が発生しています。シートに20列を表示したいからです。オプションの縦向きを横向きに変更し、スクリプトオプションのエクスポートで幅5000とhtmlテーブルの幅を設定しました。
JsPDFからpdf列幅を設定するのを手伝ってください。ありがとう
私は4日前に同じ問題を抱えていて、それを修正することができました。あなたが理解できるように、以下のサンプルコードを提供しました。
要件は、htmlテーブル(以下では3行以上のtable1として説明)をPDF形式にエクスポートすることであると想定しています。これにセル/列の幅を設定し、さらに追加しますこれらの3行以上のフォントとフォントタイプ。
最初の行はヘッダーになります-太字が適用されます..使用可能なスタイルを理解するために2行目と3行目に異なるスタイルを適用しました..列ごとに異なる列幅を適用する場合は、それも実行できます。 。
次のコードが読みやすく、自明であることを願っています。ご不明な点がございましたらお知らせください
$(document).on("click", "#btnExportToPDF", function () {
var table1 =
tableToJson($('#table1').get(0)),
cellWidth = 35,
rowCount = 0,
cellContents,
leftMargin = 2,
topMargin = 12,
topMarginTable = 55,
headerRowHeight = 13,
rowHeight = 9,
l = {
orientation: 'l',
unit: 'mm',
format: 'a3',
compress: true,
fontSize: 8,
lineHeight: 1,
autoSize: false,
printHeaders: true
};
var doc = new jsPDF(l, '', '', '');
doc.setProperties({
title: 'Test PDF Document',
subject: 'This is the subject',
author: 'author',
keywords: 'generated, javascript, web 2.0, ajax',
creator: 'author'
});
doc.cellInitialize();
$.each(table1, function (i, row)
{
rowCount++;
$.each(row, function (j, cellContent) {
if (rowCount == 1) {
doc.margins = 1;
doc.setFont("helvetica");
doc.setFontType("bold");
doc.setFontSize(9);
doc.cell(leftMargin, topMargin, cellWidth, headerRowHeight, cellContent, i)
}
else if (rowCount == 2) {
doc.margins = 1;
doc.setFont("times ");
doc.setFontType("italic"); // or for normal font type use ------ doc.setFontType("normal");
doc.setFontSize(8);
doc.cell(leftMargin, topMargin, cellWidth, rowHeight, cellContent, i);
}
else {
doc.margins = 1;
doc.setFont("courier ");
doc.setFontType("bolditalic ");
doc.setFontSize(6.5);
doc.cell(leftMargin, topMargin, cellWidth, rowHeight, cellContent, i); // 1st=left margin 2nd parameter=top margin, 3rd=row cell width 4th=Row height
}
})
})
doc.save('sample Report.pdf'); })
function tableToJson(table) {
var data = [];
// first row needs to be headers
var headers = [];
for (var i=0; i<table.rows[0].cells.length; i++) {
headers[i] = table.rows[0].cells[i].innerHTML.toLowerCase().replace(/ /gi,'');
}
// go through cells
for (var i=1; i<table.rows.length; i++) {
var tableRow = table.rows[i];
var rowData = {};
for (var j=0; j<tableRow.cells.length; j++) {
rowData[ headers[j] ] = tableRow.cells[j].innerHTML;
}
data.Push(rowData);
}
return data; }