-
Notifications
You must be signed in to change notification settings - Fork 5.2k
Vertical and horizontal scrollbar not both visible in toggled output #254
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
I'll take a look at this. Feel free to assign me, @minrk. |
@captainsafia thanks, assigned. |
…already provides scrollbars Fixes jupyter#254
@captainsafia or @jorisvandenbossche, can you test my fix at #535? |
Tested. |
@captainsafia, sorry! I didn't realize you were working on this. I saw that it had no updates for over a week, and figured people got busy and I could help out. |
@jasongrout Rumor has it @captainsafia likes really cool cat gifs and emojis. Perhaps offer to pair on a future issue. 🌻 |
@jasongrout — No worries! I got a little busy with coursework and didn't have the chance to follow through on this until 3 hours before you did (ha!) None the less, the bug is squashed and peace prevails for a moment. |
When displaying a large pandas DataFrame, you get some scrollbars. And starting from pandas 0.16.2, we leave the overflowing fully to the notebook itself (we removed
style="max-width:1500px;overflow:auto;"
from the html output, see pandas-dev/pandas#10232).But I noticed another issue: when having a wide frame that does not fit the notebook width, you get horizontal scrollbar at the bottom of the output. When you also use the 'scroll output' feature, you get a vertical scrollbar as well. But the horizontal is only visible when you first scroll down to the bottom. To illustrate:
So if you want to see all columns of the first rows, you first have to scroll down, to be able to scroll right, then scroll up again to see the rows.
I suppose the one scrollbar belongs to the output itself, and the other to the toggled ouput area, but would it be possible to have them both on the toggled output area?
The text was updated successfully, but these errors were encountered: