export to PDF table width 100%
export to PDF table width 100%
nicolalorenzini
Posts: 6Questions: 1Answers: 0
how to export to PDF and make table width 100%?
Answers
found!!!
function (doc) {
doc.content[1].table.widths =
Array(doc.content[1].table.body[0].length + 1).join('*').split('');
}