Hello there
I can't figure out how to colorize cells. Usually I do it with cell render event
col.render = function(ui) {
console.log('ui',ui);
};
but this event doesn't fire when a pivot mode is enabled.
Advise me please, how to paint cells?
dataModel: [
{id:1, year: 2019, name: 'name1', color: '#ccc'},
{id:2, year: 2019, name: 'name2', color: '#444'}
]