Hello Dimitar
I recently updated my charts to version 3.9 of the library.
As for now, the event to set the cursor is still being fired, but I cannot see any effect in visualization.
Did here change something?
my code:
var groups = $(fSettings.anchor).jqxChart('seriesGroups');
if (groups.length > 0) {
groups.forEach(function(element, index, array){
element.click = function(e){
/*....*/
};
//FIXME: no longer working in 3.9.0
element.mouseover = function(e){
$(fSettings.anchor).css('cursor', 'pointer');
};
element.mouseout = function(e){
$(fSettings.anchor).css('cursor', 'default');
};
});
}
$(fSettings.anchor).jqxChart({seriesGroups: groups});