我想在bokeh
中看到不同的补丁。假设source
和source1
。
p = figure(plot_width=800)
p.patches('x', 'y', source = source, fill_color='white', fill_alpha=0.5,
line_color="black", line_width=1)
p.patches('x', 'y', source = source1, fill_color='white', fill_alpha=0.5,
line_color="black", line_width=1)
如果这样做,我只能看到source1
。有没有添加多层的方法?