You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Running the following code in an .ipynb notebook results in a long output that is not scrollable, despite me having set "notebook.output.scrolling": true.
import matplotlib.pyplot as plt
import numpy as np
for i in range(10):
print("this is some text\n" * 10)
plt.plot(np.linspace(0, 10, 100), np.sin(np.linspace(0, 10, 100)))
plt.show()
Commenting out the plt.show() line makes it scrollable, as expected.
The text was updated successfully, but these errors were encountered:
This feature request is now a candidate for our backlog. The community has 60 days to upvote the issue. If it receives 20 upvotes we will move it to our backlog. If not, we will close it. To learn more about how we handle feature requests, please see our documentation.
We currently keep the outputs independent since they each have their own output menu to be able to select the presentation type. Grouping them all in one scrollable region would mean moving logic outside of the individual output renderer and into the workbench - a pretty significant change to make.
This feature request has not yet received the 20 community upvotes it takes to make to our backlog. 10 days to go. To learn more about how we handle feature requests, please see our documentation.
🙁 In the last 60 days, this feature request has received less than 20 community upvotes and we closed it. Still a big Thank You to you for taking the time to create this issue! To learn more about how we handle feature requests, please see our documentation.
Running the following code in an
.ipynb
notebook results in a long output that is not scrollable, despite me having set"notebook.output.scrolling": true
.Commenting out the
plt.show()
line makes it scrollable, as expected.The text was updated successfully, but these errors were encountered: