Highlight current row or column

Use options currentRowClassName and currentColumnClassName.

 
A
B
C
D
E
F
1
KiaNissanToyotaHonda
2
200810111213
3
200920111413
4
200930151213
5
 
A
B
C
D
E
F
 
1
2
3
4
5
 

var data = [
    ['', 'Kia', 'Nissan', 'Toyota', 'Honda'],
    ['2008', 10, 11, 12, 13],
    ['2009', 20, 11, 14, 13],
    ['2009', 30, 15, 12, 13]
  ],
  container = document.getElementById('example1'),
  hot;

hot = Handsontable(container, {
  data: data,
  minRows: 5,
  minCols: 6,
  minSpareRows: 1,
  currentRowClassName: 'currentRow',
  currentColClassName: 'currentCol',
  autoWrapRow: true,
  rowHeaders: true,
  colHeaders: true
});

hot.selectCell(3,3);