Format and Alignment Total in Pivot

Hi,
someone knows how to format and align Row Totals and Footer Totals in Pivot Table ? ( I’m using the Pivot Trial Version )
this code for Alignment, not works for the Row Totals and Footer Totals:
on:{onHeaderInit: function(columns) {
for(var i=0; i < columns.length; i++){
columns[i].css= {‘text-align’: ‘right’};}}}

and this Column Config:
values: [{ name:“Litres”, operation:[“sum”], format: webix.Number.format}
works well only for the Columns of the table but not for the totals…
Please, someone can help me ?

Hi,

Please use onBeforeRender event (onHeaderInit does not allow to customize “total” columns).

Footer is defined in footer property of the column:

http://webix.com/snippet/4d1b45de

Maria,
thank you so much!
L

Maria,
sorry… I’m trying but it don’t work;
maybe because I’m using a demo version ?

Maria,
sorry… It work… I’m wrong;