Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
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.