1
$scope.exportToPdf=function(){

        $('#tableToExport').tableExport({type:'pdf',
            jspdf: {orientation: 'l',
                format: 'bestfit',
                margins: {left:10, right:10, top:20, bottom:20},
                autotable: {styles: {overflow: 'linebreak',
                    rowHeight: 60,columnWidth: 'wrap',textColor: 50},
                    columnStyles: {
                          4: {columnWidth: 'auto'}
                        },
                    tableWidth: 'auto',
                    fontSize: 5,
                }}
        })
    }

我希望生成表,如以下链接所示: http: //tinypic.com/r/jq0s5x/9

但是在我的pdf最后一列中,当我将columnWidth:'auto'用于第4列时,检出方式不完全可见。这是因为我在 synid 和描述列(第 4 列)上使用了 columnWidth:'wrap'(之前此列的文本部分可见,已通过此修复)

这是我的 pdf 快照:http ://tinypic.com/r/2ur1eoh/9

4

0 回答 0