We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Why the following two options do not result in the same table design?
gridOptions = { 'columnDefs': [ {'field': 'ID', 'width': 70}, {'field': 'name', 'width': 150}, {'field': 'status', 'width': 80}, {'field': '_', 'width': 50}, {'field': 'Recomendation', 'width': 350, 'wrapText': True, 'autoHeight': True}, ], } AgGrid(df, gridOptions=gridOptions)
and
gb1 = GridOptionsBuilder.from_dataframe(df) gb1.configure_column("ID", width=70) gb1.configure_column("name", width=150) gb1.configure_column("status", width=80) gb1.configure_column("_", width=50) gb1.configure_column("Recomendation", width=150, wrapText=True, autoHeight=True) gridOptions1 = gb1.build() grid_response = AgGrid(df, gridOptions=gridOptions1)
The second option, width and autoHeight, does not work. In the second option configure_column fails to set the width.
The text was updated successfully, but these errors were encountered:
I posted in the wrong place. Created a new one: PablocFonseca/streamlit-aggrid#291 (comment)
Sorry, something went wrong.
No branches or pull requests
Why the following two options do not result in the same table design?
and
The second option, width and autoHeight, does not work. In the second option configure_column fails to set the width.
The text was updated successfully, but these errors were encountered: