Ability to hover over a cell and see a tooltip
We implemented this using the cell.title attribute...
You need to hook into the MouseMove of the sheet
handleOnMouseMove = function (e, cell) {
var activeElement = $(e.toElement);
activeElement.attr('title', '123');
}