Skip to content

Catch Click Event

Each different renderers has different even hooks. For example, for Funnel chart, to catch a single click event use 'jqplotClick' as follows:

$('#chart1').bind('jqplotClick', 
     function (ev, seriesIndex, pointIndex, data) { 
        $('#DIV_NAME').html('series: '+seriesIndex+', point: '+pointIndex+', data:'+data); 
 } 
);

A list of event hooks can be found in each jqplot.<renderer>.js file.

Feedback and Knowledge Base