小ネタです
横幅の固定は、引数で辞書を与えると出来ました。
まさにソースを読めという感じですね。
**other_default_column_properties:
Key value pairs that will be merged to defaultColDef dict.
Chech ag-grid documentation.
こんな感じで与えます。
**{"maxWidth":"150"}
**は辞書型の引数を与えるpython記号です。
python.py
gd= GridOptionsBuilder.from_dataframe(df_sel)
gd.configure_default_column(min_column_width=10,**{"maxWidth":"150"})
gridOptions = gd.build()
grid_table = AgGrid(df_sel,
gridOptions=gridOptions, height=500,
width = 20,key='grid3',
fit_column_on_grid_load = True
)