I am trying to bind the datapoints with the onclick event, so that I could display a overlay box with some additional details and links. I'm using the .nv-point
class to access the datapoints. The problem is that I'm unable to register the onclick event to those datapoints.
Here is the code :
d3.selectAll(".nv-point").on("click",function(){
alert("clicked");
//do something more
});
Here is the demo in jsFiddle