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
Here is the code:
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
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')
You are awesome!
Thank you!!!