Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do i change mouse cursor in Amchart

Tags:

amcharts

I have an bar column amchart and have click event on each column. But how can i change the mouse cursor to other icon (like hand) to make user know that the column 's clickable

like image 361
Anh Duy Vo Avatar asked Feb 14 '23 16:02

Anh Duy Vo


2 Answers

You can use showHandOnHover if you want mouse pointer to change to hand when hovering the graph

like image 55
Yuri Avatar answered May 16 '23 07:05

Yuri


You could simply use the rollOverGraphItem and rollOutGraphItem event to toggle a class to your chart container and set the cursor with css :)

like image 29
Maertz Avatar answered May 16 '23 08:05

Maertz