gpt4 book ai didi

python - Bokeh 数据表宽度

转载 作者:行者123 更新时间:2023-12-01 03:18:10 28 4
gpt4 key购买 nike

似乎 Bokeh 数据表有固定的整个表格宽度?

当我将列宽设置得很大时,它不起作用。下面的代码有 4 列 width = 1000,但它只会显示宽度小得多的 4 列。

此外,虽然我可以在 Chrome 中移动输出 html 中每列的边界,但无法移动 html 中表格的右端——整个表格宽度似乎是固定的。

有没有办法让表格宽度变大?

import bokeh.models.widgets as bmw

source = bokeh.models.ColumnDataSource(df)
numformatter = bmw.NumberFormatter()
numformatter.format = '0.00'
columns = [TableColumn(field=c, title=c, width = 1000, formatter=numformatter) for c in df]

table = bmw.DataTable(source=source, columns=columns, height = 1000)

最佳答案

刚刚发现DataTable有一个属性width(没有记录)。所以

table = bmw.DataTable(source=source, columns=columns, height = 1000, width = 4000)

可以工作

关于python - Bokeh 数据表宽度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42261593/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com