Google collab, dash app, vertical scroller disable

Hello,

I have a dash app on google collab, and i would like to see just the app result in full screen, I can make the plot fullscreen, but, when i do it in dash app, it resize the Iframe, or something like that :frowning:

Here is the code:

I think you could try to add jupyter_mode='external' to your code to make your dash runs in new window.

if __name__ == '__main__':

    app.run_server(debug=True, jupyter_mode='external')
2 Likes

You are awesome!
Thank you!!!

2 Likes