ipywidgets
ipywidgets copied to clipboard
scroll bar not displayed in Jupyter Lab using ipywidgets.Output()
This is what I get by simply displaying a pandas dataframe and it is the expected result
This is what I get if I try to capture the output in a ipywidgets.Output()
and then display it
as you can see the dataframe is not displayed correctly and I couldn't find any workarounds to make it work. Could anyone please suggest how to fix it?
Many thanks
any update on this?
I'm having the same problem! It would be really nice to have an update on this!
same issue on jupyterlab==3.0.14, can be dealt with using https://github.com/jupyter-widgets/ipywidgets/issues/2778#issuecomment-584765222
out = widgets.Output()
out.layout.width='1000px'
with out:
display(res)
return out
output.layout.overflow = 'visible'
I am having this issue also on JupyterLab 3.4.4
anyhting?