I am using asp.net charts in my web application. All the data points are clickable. I used MapAreaAttributes of each point to call a javascript function "onclick" event.
I want to change the cursor to pointer on mouse over event of the data points. I tried:
chart.Series["series"].Points[i].MapAreaAttributes += "onmouseover=\"this.style.cursor='pointer'\" onmouseout=\"this.style.cursor='default'\"";
but it doesn't work.
Anyone has a solution for that?
Thanks in advance for your help,
Inbal