It depends on your scenario, but it can be done in different ways:
cellRenderer property of the field http://js-grid.com/docs/#fieldsrowClasscss
// color second cell in the particular row
.my-row-custom-class td:nth-child(2) {
background: red;
}
itemTemplatePretty sure there are much more alternatives.