我正在尝试将vbar_stack图表与流数据一起使用。图表运行正常,流媒体也没有任何问题,但是v_bar的宽度0.9并未得到应用,它是一条直线。谁能帮忙找到造成这种情况的原因?
PFB代码段和屏幕截图。
myFigure = figure(x_axis_type='datetime', plot_height=250, title="",
toolbar_location=None, name="region",tools="hover", tooltips="$name @time: @$name")
myFigure.vbar_stack(regions, x='time', width=.9, color=colors, source=regionSource,legend=[value(x) for x in regions])