Is there any way to store IDs in Bar Charts and then getting the ID of a clicked Bar in JQplot Bar chart? This ID won't be shown on any axis. This is the code which I am using, but it just shows Point Index, or its x-axis value, how to get the ID?
$('#'+chartName).bind('jqplotDataClick',
function(ev, seriesIndex, pointIndex, data) {
alert('series: ' + seriesIndex + ', point: ' + pointIndex + ', data: ' + data);
}
);