I've currently got a CSS rule for a KendoUI Chart (that is defined in a razor view):
/* use :not(:last-child) to ignore legend */
#idOfMyChart g:not(:last-child) path
{
cursor: pointer;
}
This sets the cursor rule for the right svg elements in the chart. However, hovering over the series seems to redraw the chart (to display the tooltip) and stops the cursor from displaying as per the css rule.
Is there a way to get these svg elements to display the cursor as a pointer?
Related StackOverflow question: http://stackoverflow.com/questions/12283889/does-setting-the-cursor-for-kendo-ui-chart-series-via-css-work