I want to be able to catch the clicked event that is hooked to all the axis ticks. here is what i have done so far.
http://jsfiddle.net/grVFk/5074/
If anyone knows how to do that with any of the charting plugins can kindly share.
thanks
I want to be able to catch the clicked event that is hooked to all the axis ticks. here is what i have done so far.
http://jsfiddle.net/grVFk/5074/
If anyone knows how to do that with any of the charting plugins can kindly share.
thanks
the plot isn't plain HTML. So there is no
a
tag. And the plot itself do not provide you with an api to catch theclick
event on an axis tick.What you can do is to select the axis tick manually with jQuery and add a
click
event:And there is the solution: http://jsfiddle.net/scheffield/grVFk/5090/