how to export to PDF and make table width 100%?
found!!!
function (doc) { doc.content[1].table.widths = Array(doc.content[1].table.body[0].length + 1).join('*').split(''); }
It looks like you're new here. If you want to get involved, click one of these buttons!
Answers
found!!!
function (doc) {
doc.content[1].table.widths =
Array(doc.content[1].table.body[0].length + 1).join('*').split('');
}