我试图通过将sizing_mode属性设置为“ stretch_both”使bokeh数据表响应。但与其他模型不同的是,它不能与datatable一起使用。datatable的宽度显示为固定
data_table = DataTable(
source=sourceDT,
columns=columns,
height=200,
fit_columns=True,
editable=False,
index_position=None,name="DT"
)
data_table.sizing_mode = "scale_width"
请问我该如何做出回应?