Spaces:
Running
Running
try setting configure_auto_height
Browse files
app.py
CHANGED
@@ -56,6 +56,7 @@ with col2:
|
|
56 |
|
57 |
|
58 |
grid_option_builder = GridOptionsBuilder()
|
|
|
59 |
grid_option_builder.configure_default_column(
|
60 |
filterable=False,
|
61 |
groupable=False,
|
@@ -86,5 +87,4 @@ AgGrid(
|
|
86 |
data = top_coexp_hits,
|
87 |
gridOptions = grid_option_builder.build(),
|
88 |
fit_columns_on_grid_load=True,
|
89 |
-
height = 'autoHeight',
|
90 |
theme="streamlit")
|
|
|
56 |
|
57 |
|
58 |
grid_option_builder = GridOptionsBuilder()
|
59 |
+
grid_option_builder.configure_auto_height()
|
60 |
grid_option_builder.configure_default_column(
|
61 |
filterable=False,
|
62 |
groupable=False,
|
|
|
87 |
data = top_coexp_hits,
|
88 |
gridOptions = grid_option_builder.build(),
|
89 |
fit_columns_on_grid_load=True,
|
|
|
90 |
theme="streamlit")
|