helgasoft commented on issue #18944:
URL: https://github.com/apache/echarts/issues/18944#issuecomment-1666125072

   Changing your _goFull_ function may work:
   ```
   function goFull() {
     if (document.fullscreenElement) {
       opt = { tooltip: { confine: true }};
       chart.setOption(opt);
       document.exitFullscreen();
     } else {
       opt = { tooltip: { }};
       chart.setOption(opt);
       document.getElementById('root').requestFullscreen();
     }
   }
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to