Conditional cssFormat with other column

If possible I create cssFormat style depend on other column without using $cellCss ?

function mark_min_stock(value){
if(value != 0 && current_stock<=value) // get other column value = current_stock
return “highlight”;
}

https://webix.com/snippet/bd06ae2a

row object is already passed as second argument
https://webix.com/snippet/8fa00b96

@intregal thanks.