我使用ui-grid export pdf,但最后一列总是减少一半。无论我设置什么页面大小。
我搜索一下,有人说,设置exporterPdfOrientation:'landscape', 在
$scope.gridOptions = { ... exporterPdfOrientation: 'landscape', ...}
它对我不起作用。
答案 0 :(得分:0)
经过多次尝试:我发现解决方案是减少exporterPdfMaxGridWidth:600,
exporterPdf configuration source code
$scope.gridOptions = {
exporterPdfOrientation: 'landscape',
exporterPdfPageSize:'A4', // exporterPdfMaxGridWidth = Defaults to 720 (for A4 landscape), use 670 for LETTER
// page size see --- https://github.com/bpampuch/pdfmake/blob/master/src/standardPageSizes.js
exporterPdfMaxGridWidth: 600, // bug, for A4, default is 720, set to 600 solve my problem.