如何在exportpdf jquery数据表中将数字数据正确对齐
我已经尝试过下面的代码,但是它获取了我只需要数字数据列的所有列
doc.defaultStyle.alignment ='right';
doc.defaultStyle.alignment ='right';
答案 0 :(得分:0)
可以尝试
// Change 5th column to right align
var rowCount = doc.content[1].table.body.length;
for (i = 0; i < rowCount+1; i++) {
doc.content[1].table.body[i][5].alignment = 'right';
};
请参考more detail