hi,

no there isn't, not directly, the library only changes the background of html elements binded to cell updates, the setRowAttribute is just a shortcut to call the same setAttribute on all the cells of a row involved in an update.

If you use a "Dyna" table, you receive the dom node that is a clone of the original template as a parameter of the onChangingValues callback, so you can change directly the background color modifying its style.

For other tables you can exploit the itemNumber that you receive with the onChangingValues to identify the updated row and change the background through the dom.

HTH