散景DataTable宽度

时间:2017-02-15 22:49:29

标签: python bokeh

似乎散景DataTable有一个固定的整个表格宽度?

当我将列的宽度设置为大时,它将无法工作。下面的代码有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)

1 个答案:

答案 0 :(得分:2)

刚发现self.e.grid(row=10,column=0,sticky = "W") # -skipped- f.write("Douglas:"+self.e.get()+"\n") # -skipped- self.e.delete(0, 'end') 有一个属性DataTable(未记录)。所以

width

将起作用