Hello,
I have line chart with multiple lines. One line consists of a target value. I need to cancel or disable the mouseover event for this line. I have disabled labels and tooltips showLabels: false, showToolTips: false, but the point on the line is still higlighted on mouse over or out. The following code did not work
mouseover: function (e) {
e = window.event;
e.stopPropagation();
e.cancelBubble = true;
},
mouseout: function (e) {
e = window.event;
e.stopPropagation();
e.cancelBubble = true;
}
Is it possible to disable or cancel this event