twosigma / twosigma/beakerx

Visualize vertical scrollbar for tables with many columns following TableDisplay

Open
#8,282 0 comments 0 reactions 0 assignees View on GitHub
Dominant language
Jupyter Notebook
Stars
2.9k
Forks
383
PR merge metrics
No merged PRs in 30d

Description

Hello. For tables with many columns, is there a way to view the vertical scrollbar without having to scroll past many columns, such as by customizing the window size or through a property that lets you pin the scrollbar to the right of the viewable window, regardless of column position? I am using TableDisplay(pandas.DataFrame()) in a JupyterLab environment. I would appreciate any information.

I have reproduced my issue below:
```
import pandas as pd
import numpy as np
from beakerx import *
from beakerx.object import *

data = np.random.randint(5,30,size=(300,250))
df = pd.DataFrame(data, columns=list(range(0, 250)))

#: Display dataframe as BeakerX table
beakerx_table = TableDisplay(df)
beakerx_table.loadingMode = 'ENDLESS'
display(HBox([beakerx_table]))
```

Contributor guide

No contributing guide indexed for this repository

Assessment

This issue has not been assessed yet.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.