I created an UI to export angularjs grid to PDF using PDF Make, it was succeeded, but I want align only two columns to right in the table. I used below code for that,
exporterPdfCustomFormatter: function (docDefinition) {
docDefinition.styles.tableStyle = {
alignment:'right'
};
return docDefinition;
}
That code is work fine for align all columns to right in the table. how can i change that code to align right only for two columns in the table?