This example, Aggregating data while grouping has column votes with set of number value. And I want add tooltips for elements which has more than 400 votes. How to achieve this?
@eldos21 Hope it is what you need : https://webix.com/snippet/68a2db8e
yes, it helped me, thanks. But I have another question: how to change font colors of these votes
@eldos21 Not sure if you need it in tooltip or in cells , but i would wrap the returning object in html element and define the needed style in that element.
return "<div style='color:red'>" + obj.something + "</div>";
As for whole column , you can use ‘css’ propertie :
css: "cssClass" or css: { "color": "red", "text-align":"right"}