jQWidgets Forums

jQuery UI Widgets Forums Chart Cancel mouseover event in line charts

This topic contains 1 reply, has 2 voices, and was last updated by  Peter Stoev 11 years, 9 months ago.

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
  • Cancel mouseover event in line charts #32080

    bootini
    Member

    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

    Cancel mouseover event in line charts #32123

    Peter Stoev
    Keymaster

    Hi bootini,

    It is currently not possible to hide the mouse over pointer.

    Best Regards,
    Peter Stoev

    jQWidgets Team
    http://www.jqwidgets.com

Viewing 2 posts - 1 through 2 (of 2 total)

You must be logged in to reply to this topic.