Events

12 Feb 20181 minute to read

cellMouseOver

The cellMouseOver event gets triggered when we mouse over on the cell.

  • JS
  • // cellMouseOver event for HeatMap
    $("#heatmapcontent").ejHeatMap({
        cellMouseOver: function(args) {}
    });

    cellMouseEnter

    The cellMouseEnter event gets triggered when mouse enters the cell.

  • JS
  • // cellMouseEnter event for HeatMap
    $("#heatmapcontent").ejHeatMap({
        cellMouseEnter: function(args) {}
    });

    cellMouseLeave

    The cellMouseLeave event gets triggered when mouse leaves the cell.

  • JS
  • // cellMouseLeave event for HeatMap
    $("#heatmapcontent").ejHeatMap({
        cellMouseLeave: function(args) {}
    });

    cellSelected

    The cellSelected event gets triggered when we select the heatmap cell.

  • JS
  • // cellSelected event for HeatMap
    $("#heatmapcontent").ejHeatMap({
        cellSelected: function(args) {}
    });