Clickable yaxis

Hi,

Is there any event to click on yaxis using plotlj js.

Thx
Lavanya.

Not at the moment, unfortunately.

var ytitle = $(’#’+divname +’ .plot-container .svg-container’);
ytitle.click(function(){
alert(“Title was clicked!”);
});

using this logic I implemented. Its working fine.