Hover over a cell

I have an editable cell, that I would like to change the background colour when you hover over it.

I can do the entire column but then every cell in the column changes colour when I hover over the column.

I see there is addCellCss but that requires a spedific cell.
Do I need to populate the table and then call addCellCss on every cell I want to the hover on?

You can use the native webix_cell:hover class:
http://webix.com/snippet/fea8e993

I only want to hover over cells in one column.

Thanks I was able to do it with CSS, by adding the “hover” class to the column.

.hover .webix_cell:hover {
background-color: orange;
}