散景动态调整大小

时间:2018-02-18 19:53:18

标签: python bokeh bokehjs

我有Bokeh 0.12.6, 我做什么

p2 = figure(x_axis_type="datetime", plot_width=1500,plot_height=700,
            x_range=p1.x_range, title="")
select = Select(title="SELECT", options=["val1", "val2", "val3"])
select.callback = CustomJS(args={'plot1': p1, 'plot2': p2}, code="""
        if(cb_obj.value === "val1"){
            plot2.width = 1500;
        }else{ 
            plot2.width = 700;
        }
        plot2.document.resize();

    """)

我需要通过点击下拉菜单调整大小,但我收到js错误 document.resize不是一个函数。我还试过plot2.change.emit(); 但只有在我更改Chrome中的显示宽度时才更改绘图。 如何动态改变绘图属性,如宽度,高度,线条属性等。? 感谢。

1 个答案:

答案 0 :(得分:0)

Bokeh曾经调整大小,但它died recently并不会从我读到的内容中复活。