Thanh Nguyen
Thanh Nguyen

Reputation: 81

Customizing mouse cursor in Jfreechart

Is it possible to change to cursor in JFreechart from the normal cursor into hand cursor,

together with a ball run across the chart like the chart in this link :

http://cafef.vn/Thi-truong-niem-yet/Bieu-do-ky-thuat/EPS-HNX-2.chn

I have no idea how it could be done in Jfreechart?

Thanks!

Upvotes: 2

Views: 798

Answers (1)

Catalina Island
Catalina Island

Reputation: 7126

Just add your chart to a ChartPanel and call addMouseMotionListener(). For the listener, use a MouseAdapter that sets the cursor how your want it in mouseEntered() and mouseExited(). Here's the tutorial.

Upvotes: 2

Related Questions