My table has 13 columns. How can I get different width for each column? Can I give each column width like this?
styles: {overflow: \'linebreak\' ,columnWidt
By default the 'columnsStyles' dont have in 'Options', that's necessary create it and next step you define the 'columnWidth'.
Options['columnStyles'] = { 0: {columnWidth: 50}, 1: {columnWidth: 'auto'}, 2: {columnWidth: 'wrap'}, 3: {columnWidth: 150} } JSPDF.autoTable(columns, values, Options)