I am working on angular-datatables and trying to set responsive priority for last column according to datatables.net. In angular I wrote it in following way
vm.dtColumnDefs = [
DTColumnDefBuilder.newColumnDef(-1).withOption('responsivePriority',1)
];
But the above code is not working. Am I missing something here?