admin管理员组文章数量:1347158
My example (just click "export PDF"): /
My example exports my table which looks like this:
.
The table then is exported to pdf using libraries jspdf and autotable.
During the export function I use the "drawCell" function and for all columns which contain a number i right-align them as follows:
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';
}
}
.
Problem: In the PDF all the columns which I have right-aligned are positioned inproperly, it looks like this:
Is this a bug? Or maybe I am using "drawCell" inproperly?
My example (just click "export PDF"): https://jsfiddle/j9vaqpnz/7/
My example exports my table which looks like this:
.
The table then is exported to pdf using libraries jspdf and autotable.
During the export function I use the "drawCell" function and for all columns which contain a number i right-align them as follows:
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';
}
}
.
Problem: In the PDF all the columns which I have right-aligned are positioned inproperly, it looks like this:
Is this a bug? Or maybe I am using "drawCell" inproperly?
Share Improve this question asked Jan 30, 2017 at 10:43 DavidDunhamDavidDunham 1,3721 gold badge25 silver badges49 bronze badges 2- Try using createdCell instead of drawCell. – Simon Bengtsson Commented Jan 30, 2017 at 11:36
- Takk Simon. I have posted an updated - working - example below for pletion if anyone else is looking for this. – DavidDunham Commented Jan 30, 2017 at 13:12
2 Answers
Reset to default 4When using "didParseCell" (v3.x) the right align positions the elements properly.
Updated example: https://jsfiddle/j9vaqpnz/10/
New Code:
...
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';
}
}
You can align cells using the columnStyles
property
const pdf = new jsPDF();
pdf.autoTable({
...
columnStyles: {
3: {
halign: 'right'
},
5: {
halign: 'right'
},
6: {
halign: 'right'
},
7: {
halign: 'right'
},
8: {
halign: 'right'
},
9: {
halign: 'right'
},
10: {
halign: 'right'
}
}
});
jsPDF-AutoTable documentation
本文标签: javascriptjsPDF autotable right align x position bugStack Overflow
版权声明:本文标题:javascript - jsPDF autotable right align x position bug - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743834430a2547127.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论