GibbsConsulting / jupyter-plotly-dash

Jupyter notebook wrapper for plotly dash applications
GNU Affero General Public License v3.0
81 stars 12 forks source link

maximize the size of the output from a cell #55

Closed VNDRN closed 4 years ago

VNDRN commented 4 years ago

Currently when using jupyter-plotly-dash the output of a cell is smaller (less width) than when not using it. Is this an issue where the dash app does not fill the full output field of a Jupyter notebook? Or is there an easy work-around? this is how it looks when using jupyter-plotly-dash image

this is how it looks when dash isn't used, the graph fills the entire width of the screen. image

GibbsConsulting commented 4 years ago

The output window is controlled by the height and width parameters passed to the JupyterDash constructor. At the moment, the output doesn't autosize.

VNDRN commented 4 years ago

Thanks!
app = JupyterDash("appname", width = "100%") indeed did the trick