2022-08-26 02:43 AM
Hi,
probably my problem is very simple to solve. I have a swipe container with a static graph that fills almost the entire screen. My problem is that I can't swipe the container because the static graph widget processes the touch event, even the click listener is not enabled.
Is there a simple solution to pass the event to the swipe container so I can move it?
Thank you very much.
Best regards
Dominik Schmid
Solved! Go to Solution.
2022-08-26 06:22 AM
Hello @Community member ,
You could call graph1.setTouchable(false) method in your code, in order to disable touch events on this widget.
That should fix your issue.
Let me know how it is going,
/Yoann
2022-08-26 06:22 AM
Hello @Community member ,
You could call graph1.setTouchable(false) method in your code, in order to disable touch events on this widget.
That should fix your issue.
Let me know how it is going,
/Yoann
2022-08-26 10:54 PM
Hello Yoann Klein,
thank you very much. That fixed my problem.
Best regards
Dominik