So, I have a method in jQuery to detect click events on my fleet diagram:
$("#placeholder").bind("plotclick", function (event, pos, item) { alert("clicked"); });
I know the click values ββfrom the item ['datapoint'] array. But where can I find the curve label I clicked on?
Thanks.
source share