Skip to content
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

Tabulator may overlap with other components if max_height is set #7401

Closed
ahuang11 opened this issue Oct 15, 2024 · 0 comments · Fixed by #7403
Closed

Tabulator may overlap with other components if max_height is set #7401

ahuang11 opened this issue Oct 15, 2024 · 0 comments · Fixed by #7403
Labels
component: tabulator Related to the Tabulator widget

Comments

@ahuang11
Copy link
Contributor

ahuang11 commented Oct 15, 2024

image
import panel as pn
import pandas as pd
import numpy as np

pn.extension("tabulator")

df = pd.DataFrame(
    np.random.randn(10000, 5),
)
pn.Column(pn.widgets.Tabulator(df, max_height=300), "Hello!").show()

Replacing max_height with min_height/height will fix it

@ahuang11 ahuang11 added TRIAGE Default label for untriaged issues type: bug component: tabulator Related to the Tabulator widget and removed TRIAGE Default label for untriaged issues labels Oct 15, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
component: tabulator Related to the Tabulator widget
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant