Hover Cursor

To adjust the hover cursor of the legend, combine the legend() method of the chart with hoverCursor() and one of the parameters listed in anychart.enums.Cursor.

By default, the cursor type is "pointer", and in the following sample it is set to "help":

// customize the hover cursor of the legend
chart.legend().hoverCursor("help");

Playground