I would like to add a tooltip when the user hovers over a label on the y axis. I want to prevent the label from wrapping, because with very long labels, the labels overlap and are unreadable, but when I use labelWrap: false, it just cuts off the end of the label, with no way to read the whole label. I want a tooltip to show up when I hover the mouse over the label that shows the full label text.
Here is a sample of what I currently have: https://jsfiddle.net/a4uw9073/3/
As you can see, you can’t see the full text of the y-axis labels. I need to be able to see the full text while still leaving labelWrap: false. Is this possible?
If it’s not possible, I would at least like some way to indicate that the full label isn’t being shown. Maybe being able to add a suffix of “…” to the end, but only when the whole label isn’t shown.