Hover style for labels in legend

How to set a hover style for labels in a legend?

If you can set cursor: default when you hover over Tokyo, New York, Berlin, London in this example http://www.highcharts.com/demo/ , and also prevent the color from changing to black or set a different color for the hanging label?

I disabled clicking on legend labels by adding this property:

 plotOptions.series.events.legendItemClick = function() { return false; } 

But now it looks strange that the cursor is a pointer, and the colors of the labels change when you hover over the mouse.

+4
source share
1 answer
+4
source

Source: https://habr.com/ru/post/1489489/


All Articles