I am trying to print an angular ui-grid with 30 columns and it cuts off at 15 columns. How can I print the remaining 15 columns on the next page.
This is how I am generating a pdf.
gridApi.exporter.pdfExport(uiGridExporterConstants.VISIBLE, uiGridExporterConstants.VISIBLE);
And these are the config options that i am using
exporterPdfOrientation: 'landscape',
exporterPdfPageSize: 'LETTER'
Any help will be appreciated.