The following implementation shows mouseover
event with cursor pointer
on y axis title label. It works and functional.
However, I want to implement mouseover
event with cursor pointer
on y axis (numeric axis) as well.
The following implementation shows mouseover
event with cursor pointer
on y axis title label. It works and functional.
However, I want to implement mouseover
event with cursor pointer
on y axis (numeric axis) as well.
there is actually a supported option with a custom visual:
categoryAxis: [{
labels: {
color: "rgba(60,60,60, 0.9995)",
visual: function(e) {
var visual = e.createVisual();
visual.options.cursor = 'pointer';
return visual;
}
}
}]
You can apply the same color trick to the axis labels:
Updated DEMO
In this example I use the same color for title and labels, you could easily use a different color