I am using a bar chart. I would like the cursor to change to a pointer when rolling over a bar. How can I do this?
Ron
You are going to have to handle two client side events off the webchart and set the cursor style on the div that has the id of the chart control. Here is the code I used:
function UltraChart1_ClientOnMouseOver(this_ref, row, column, value, row_label, column_label, evt_type, layer_id){
}
function UltraChart1_ClientOnMouseOut(this_ref, row, column, value, row_label, column_label, evt_type, layer_id){
chdiv.style.cursor="default";