我的示例(只需单击“导出PDF”):https://jsfiddle.net/j9vaqpnz/7/
我的示例导出我的表,如下所示:
。
然后使用jspdf和autotable库将表导出为pdf。
在导出功能期间,我使用“drawCell”功能,对于包含数字的所有列,我按如下所示将它们右对齐:
drawCell: function (cell, data) {
var col = data.column.index;
if(col==3 || col==5 || col==6 || col==7 || col==8 || col==9 || col==10){
cell.styles.halign = 'right';
}
}
。
问题:在PDF中,我右对齐的所有列均放置不正确,如下所示:
这是一个错误吗?还是我使用的“drawCell”不正确?
最佳答案
使用“didParseCell”(v3.x)时,右对齐可正确定位元素。
更新的示例:https://jsfiddle.net/j9vaqpnz/10/
新代码:
...
didParseCell: function (cell, data) {
alignCol(cell, data);
}
...
function alignCol(data){
var col = data.column.index;
if(col==3 || col==5 || col==6 || col==7 || col==8 || col==9 || col==10){
data.cell.styles.halign = 'right';
}
}
关于javascript - jsPDF自动向右对齐x位置错误,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/41933897/