i want to make customized footer using jspdf
this footer can have large data so i want the data above the footer should automatically go to next page
i am using auto table to set footer but it was not giving desired results
autoTable(doc, {
theme: 'plain',
tableLineColor: [0, 0, 0],
tableWidth: 175,
startY: 277,
body: [
[
{
content: (this.orgDetailsObj.terms!= undefined?this.orgDetailsObj.terms:''),
styles: {
halign: 'center',
valign:'middle',
fontSize: 8,
textColor: 'black',
fillColor:'white',
// tableLineColor: [0, 0, 0],
// tableWidth: 100,
overflow:'linebreak',
}
}]]
})
New contributor
SHIVANSH SETHI is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.