Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
85
How do I handle the tooltip shown event and change the text that it displayed
posted

The following event seems not working:

$(document).delegate("#ProChart", "igdatacharttooltipshown", function (evt, ui) {

var tooltip = ui.element;

var item = ui.item;

var newValue = formatDate(item.X);

$(tooltip).text(newValue);
});

Parents Reply Children
No Data