I am just wondering if anyone here has encounter any issue when performing action click on jqplot items.
So here I have a barchart rendered with jqplot. I binded click event on jqplot chart with
$.jqplot.eventListenerHooks.push(['jqplotClick', myClickHandler]);
And basically myClickHandler looks like this:
function myClickHandler(ev, gridpos, datapos, neighbor, plot) {
alert('you have triggered click action');
}
With this simple jqplot implementation, this alert action will be triggered when we click on the area inside the chart, including the bar chart item. This works perfectly in any desktop browsers (IE6, 7, 8 and 9, chrome, safari).
Here is the issue I face, when I access the site using iphone/ipad, everything is rendered perfectly except the weird behavior of click action specified above.
Basically I tried to touch on any bar chart item, it didn't alert 'you have triggered click action' as if nothing happening.
So I tried to click(touch) the empty space of the chart, it does display the alert message.
Thanks.