I have implemented the following code which allows user to click on y axis itself (value Axis, numeric axis) with using axisLabelClick
event.
chart.bind("axisLabelClick", clickEvent);
chart.options.axisLabelClick = clickEvent;
function clickEvent (e) {
if (e.axis.type = "numeric")
{
if (!self.isClick)
{
self.isClick= true;
}
else {
self.isClick= false;
}
}
}
However I would like to know there is a way/trick or event to enable user to click y (value Axis, numeric Axis) axis title label (text) ?