How to change mouse cursor in Amchart

I have a column column outpatient and have a click event for each column. But how can I change the mouse cursor to another icon (for example, a hand) so that the user knows that the column with the click

+4
source share
3 answers

You can use showHandOnHover if you want the mouse pointer to switch to your hands when you hover over

+4
source

You can simply use rollOverGraphItem and rollOutGraphItem to switch the class to the chart container and set the cursor using css :)

+2
source

CSS amcharts-graph-column, addClassNames true AMChart. ( 3)

This allows the column to have a cursor, without a solid diagram that looks clickable, and does not require the registration of any additional event handlers.

0
source

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


All Articles