footerCellMouseOver
fires on moving the mouse pointer over a grid footer cell
[GridEvents.footerCellMouseOver]: (cell: IFooter, column: ICol, event: MouseEvent) => void;
Parameters:
The callback of the event is called with the following parameters:
- cell: IFooter- an object with a footer cell configuration
- column: ICol- an object with a column configuration
- event: MouseEvent- a native HTML event object
Example
grid.events.on("footerCellMouseOver ", (cell, column, event) => {
    // your logic here
});