Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

mashup. Setting no interaction for a qvobject. is it possible?

Hi Qlikers,

In a mashup, can one prevent user from selecting the chart's record? but allow hovering?

I have a line graph that I wish to do just that.

2 Replies
reddy-s
Master II
Master II

Hi Saw,

Try this:

Refer this to the div in which your chart has been rendered. For an example I have taken '#ID'

$('#ID').click(function (event){
  
event.stopPropagation();
  
// ... If you would like to through a pop up message
  
return false;
});

Not applicable
Author

hmm...i tried it. couldn't work.